Plugin Directory

Changeset 416723


Ignore:
Timestamp:
07/29/2011 04:52:28 AM (15 years ago)
Author:
mg12
Message:
 
Location:
wp-recentcomments/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-recentcomments/trunk/README.txt

    r316325 r416723  
    44Tags: comments, widget, sidebar, AJAX, option
    55Requires at least: 2.5
    6 Tested up to: 3.0
    7 Stable tag: 2.0.6
     6Tested up to: 3.2.1
     7Stable tag: 2.0.7
    88
    99Display recent comments in your blog sidebar.
     
    100100
    101101    VERSION DATE       TYPE   CHANGES
     102    2.0.7   2011/07/29 FIX    Fixed an XSS vulnerability that uses a bug in AJAX pagings.
    102103    2.0.6   2010/11/29 FIX    Format the post titles of JSON.
    103104    2.0.5   2010/11/28 NEW    Added Traditional Chinese support. (Thanks Pseric)
  • wp-recentcomments/trunk/core.php

    r316325 r416723  
    66function rc_ajax(){
    77    if($_GET['action'] == 'rc-ajax') {
    8         $page = $_GET['page'];
     8        $page = (int)$_GET['page'];
    99        echo rc_get_json($page);
    1010        die();
  • wp-recentcomments/trunk/wp-recentcomments.php

    r316325 r416723  
    44Plugin URI: http://www.neoease.com/plugins/
    55Plugin Description: Show the recent comments in your WordPress sidebar.
    6 Version: 2.0.6
     6Version: 2.0.7
    77Author: mg12
    88Author URI: http://www.neoease.com/
Note: See TracChangeset for help on using the changeset viewer.