Changeset 1593666
- Timestamp:
- 02/11/2017 02:19:11 AM (9 years ago)
- Location:
- wp-comments-manager
- Files:
-
- 2 edited
- 4 copied
-
tags/1.5.1 (copied) (copied from wp-comments-manager/trunk)
-
tags/1.5.1/readme.txt (copied) (copied from wp-comments-manager/trunk/readme.txt) (2 diffs)
-
tags/1.5.1/wp-comments-manager.php (copied) (copied from wp-comments-manager/trunk/wp-comments-manager.php) (2 diffs)
-
tags/1.5.1/wpcm.js (copied) (copied from wp-comments-manager/trunk/wpcm.js)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-comments-manager.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-comments-manager/tags/1.5.1/readme.txt
r1579493 r1593666 4 4 Tags: 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 5 5 Requires at least: 3.6 6 Tested up to: 4.7. 17 Stable tag: 1.5 6 Tested up to: 4.7.2 7 Stable tag: 1.5.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 50 50 == Changelog == 51 51 52 = 1.5.1 = 53 * Fix some bugs. 54 52 55 = 1.5 = 53 * Query Optimization.56 * Query optimization. 54 57 * Fix some bugs. 55 58 -
wp-comments-manager/tags/1.5.1/wp-comments-manager.php
r1582028 r1593666 3 3 Plugin Name: Wordpress Comments Manager 4 4 Plugin URI: https://kn007.net/topics/new-wordpress-comment-management-system/ 5 Version: 1.5 5 Version: 1.5.1 6 6 Description: 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. 7 7 Author: kn007 … … 140 140 }else{ 141 141 $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"; 143 143 $sql .= ") ORDER BY `comment_ID` DESC LIMIT ".$order['limit']; 144 144 } -
wp-comments-manager/trunk/readme.txt
r1579493 r1593666 4 4 Tags: 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 5 5 Requires at least: 3.6 6 Tested up to: 4.7. 17 Stable tag: 1.5 6 Tested up to: 4.7.2 7 Stable tag: 1.5.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 50 50 == Changelog == 51 51 52 = 1.5.1 = 53 * Fix some bugs. 54 52 55 = 1.5 = 53 * Query Optimization.56 * Query optimization. 54 57 * Fix some bugs. 55 58 -
wp-comments-manager/trunk/wp-comments-manager.php
r1582028 r1593666 3 3 Plugin Name: Wordpress Comments Manager 4 4 Plugin URI: https://kn007.net/topics/new-wordpress-comment-management-system/ 5 Version: 1.5 5 Version: 1.5.1 6 6 Description: 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. 7 7 Author: kn007 … … 140 140 }else{ 141 141 $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"; 143 143 $sql .= ") ORDER BY `comment_ID` DESC LIMIT ".$order['limit']; 144 144 }
Note: See TracChangeset
for help on using the changeset viewer.