Plugin Directory

Changeset 1593666


Ignore:
Timestamp:
02/11/2017 02:19:11 AM (9 years ago)
Author:
kn007
Message:

1.5.1

Location:
wp-comments-manager
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • wp-comments-manager/tags/1.5.1/readme.txt

    r1579493 r1593666  
    44Tags: comments, view, spam, control, ajax, search, management, manager, comment search, comment view, comment edit, comment reply, comment approval, comment moderation, comment spam, comment trash, comment delete
    55Requires at least: 3.6
    6 Tested up to: 4.7.1
    7 Stable tag: 1.5
     6Tested up to: 4.7.2
     7Stable tag: 1.5.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5050== Changelog ==
    5151
     52= 1.5.1 =
     53* Fix some bugs.
     54
    5255= 1.5 =
    53 * Query Optimization.
     56* Query optimization.
    5457* Fix some bugs.
    5558
  • wp-comments-manager/tags/1.5.1/wp-comments-manager.php

    r1582028 r1593666  
    33Plugin Name: Wordpress Comments Manager
    44Plugin URI: https://kn007.net/topics/new-wordpress-comment-management-system/
    5 Version: 1.5
     5Version: 1.5.1
    66Description: Wordpress Comments Manager help you to quickly find comments and manage comments. It can be very convenient to review selected comments, open the comment in a new window, reply comment, edit comment and delete comments. See the screenshots for more details.
    77Author: kn007
     
    140140    }else{
    141141        $sql .= " AND `comment_ID`<=(";
    142         $sql .= "SELECT `comment_ID` FROM `wp_comments` WHERE ".$where." ORDER BY `comment_ID` DESC LIMIT ".$order['offset'].",1";
     142        $sql .= "SELECT `comment_ID` FROM `".$wpdb->comments."` WHERE ".$where." ORDER BY `comment_ID` DESC LIMIT ".$order['offset'].",1";
    143143        $sql .= ") ORDER BY `comment_ID` DESC LIMIT ".$order['limit'];
    144144    }
  • wp-comments-manager/trunk/readme.txt

    r1579493 r1593666  
    44Tags: comments, view, spam, control, ajax, search, management, manager, comment search, comment view, comment edit, comment reply, comment approval, comment moderation, comment spam, comment trash, comment delete
    55Requires at least: 3.6
    6 Tested up to: 4.7.1
    7 Stable tag: 1.5
     6Tested up to: 4.7.2
     7Stable tag: 1.5.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5050== Changelog ==
    5151
     52= 1.5.1 =
     53* Fix some bugs.
     54
    5255= 1.5 =
    53 * Query Optimization.
     56* Query optimization.
    5457* Fix some bugs.
    5558
  • wp-comments-manager/trunk/wp-comments-manager.php

    r1582028 r1593666  
    33Plugin Name: Wordpress Comments Manager
    44Plugin URI: https://kn007.net/topics/new-wordpress-comment-management-system/
    5 Version: 1.5
     5Version: 1.5.1
    66Description: Wordpress Comments Manager help you to quickly find comments and manage comments. It can be very convenient to review selected comments, open the comment in a new window, reply comment, edit comment and delete comments. See the screenshots for more details.
    77Author: kn007
     
    140140    }else{
    141141        $sql .= " AND `comment_ID`<=(";
    142         $sql .= "SELECT `comment_ID` FROM `wp_comments` WHERE ".$where." ORDER BY `comment_ID` DESC LIMIT ".$order['offset'].",1";
     142        $sql .= "SELECT `comment_ID` FROM `".$wpdb->comments."` WHERE ".$where." ORDER BY `comment_ID` DESC LIMIT ".$order['offset'].",1";
    143143        $sql .= ") ORDER BY `comment_ID` DESC LIMIT ".$order['limit'];
    144144    }
Note: See TracChangeset for help on using the changeset viewer.