Plugin Directory

Changeset 796527


Ignore:
Timestamp:
10/31/2013 09:49:40 AM (12 years ago)
Author:
commentluv
Message:

tagging 2.92.3
and fixes for wp 3.7.1

Location:
commentluv
Files:
150 added
2 edited

Legend:

Unmodified
Added
Removed
  • commentluv/trunk/commentluv.php

    r794340 r796527  
    33Plugin URI: http://comluv.com/
    44Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
    5 Version: 2.93.1
     5Version: 2.93.2
    66Author: Andy Bailey
    77Author URI: http://www.commentluv.com
     
    594594            // is registered user?
    595595            $email = get_comment_author_email($cid);
    596             $user = get_user_by_email($email);
     596            //$user = get_user_by_email($email);
     597            $user = get_user_by('email',$email);
    597598            if($user){
    598599                $isreg = true;
     
    733734                        // luvlink was saved to meta, dofollow the link?
    734735                        $nofollow = ' rel="nofollow"';
    735                         $isreg = get_user_by_email($comment->comment_author_email);
     736                        //$isreg = get_user_by_email($comment->comment_author_email);
     737                        $isreg = get_user_by('email',$comment->comment_author_email);
    736738                        if($options['dofollow'] == 'everybody'){
    737739                            $nofollow = '';
  • commentluv/trunk/readme.txt

    r793956 r796527  
    44Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
    55Requires at least: 3.0
    6 Tested up to: 3.7
    7 Stable tag: 2.93.1
     6Tested up to: 3.7.1
     7Stable tag: 2.93.2
    88   
    99Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
     
    8888== ChangeLog ==
    8989
     90* updated : get_user_by_email removed from functions.
     91
    9092= 2.93.1 =
    9193
Note: See TracChangeset for help on using the changeset viewer.