Changeset 1431


Ignore:
Timestamp:
Jul 4, 2006, 1:05:55 AM (18 years ago)
Author:
plg
Message:

bug 443 fixed: new users were never notified to administrators due to a
typo.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_6/include/functions_notification.inc.php

    r1112 r1431  
    3434 *
    3535 * @param string action ('count' or 'info')
    36  * @param string type of query ('new_comments', 'unvalidated_comments', 'new_elements', 'updated_categories', ' new_users', 'waiting_elements')
     36 * @param string type of query ('new_comments', 'unvalidated_comments', 'new_elements', 'updated_categories', 'new_users', 'waiting_elements')
    3737 * @param string start (mysql datetime format)
    3838 * @param string end (mysql datetime format)
     
    8181;';
    8282      break;
    83     case ' new_users':
     83    case 'new_users':
    8484      $query = '
    8585  FROM '.USER_INFOS_TABLE.'
     
    117117          $field_id = 'category_id';
    118118          break;
    119         case ' new_users':
     119        case 'new_users':
    120120          $field_id = 'user_id';
    121121          break;
     
    145145          $fields = array('category_id');
    146146          break;
    147         case ' new_users':
     147        case 'new_users':
    148148          $fields = array('user_id');
    149149          break;
Note: See TracChangeset for help on using the changeset viewer.