Plugin Directory

Changeset 1030076


Ignore:
Timestamp:
11/21/2014 11:33:08 AM (11 years ago)
Author:
iosoft
Message:

Bug fixing 2

Location:
mini-statistics/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mini-statistics/trunk/mini-statistics.php

    r1029232 r1030076  
    44Plugin URI: https://wordpress.org/plugins/mini-statistics/
    55Description: This plugin is a small and simple Users Statistics and Comments Statistics plugin for WordPress.
    6 Version: 1.0.1
     6Version: 1.0.2
    77Author: Ayan Debnath
    88Author URI: http://about.me/ayandebnath
     
    121121   
    122122    $start_date = intval($wpdb->get_var(
    123         $wpdb->prepare(
    124             "
    125             SELECT year(comment_date) FROM $wpdb->comments
    126                 WHERE comment_approved = 1
    127                 ORDER BY comment_date
    128                 LIMIT 1
    129             "
    130         , null)
     123        "
     124        SELECT year(comment_date) FROM $wpdb->comments
     125            WHERE comment_approved = 1
     126            ORDER BY comment_date
     127            LIMIT 1
     128        "
    131129    ));
    132130   
     
    229227   
    230228    $start_date = intval($wpdb->get_var(
    231         $wpdb->prepare(
    232             "
    233             SELECT year(user_registered) FROM $wpdb->users
    234                 ORDER BY user_registered
    235                 LIMIT 1
    236             "
    237         , null)
     229        "
     230        SELECT year(user_registered) FROM $wpdb->users
     231            ORDER BY user_registered
     232            LIMIT 1
     233        "
    238234    ));
    239235   
  • mini-statistics/trunk/readme.txt

    r1029232 r1030076  
    3232== Changelog ==
    3333
     34= 1.0.2 =
     35* Small PHP-Notice error fixing. Special thanks to Ayan Debnath.
     36
    3437= 1.0.1 =
    3538* Small bug fixing. Special thanks to Kishore Chowdhury.
Note: See TracChangeset for help on using the changeset viewer.