Ignore:
Timestamp:
Oct 31, 2009, 5:55:24 PM (14 years ago)
Author:
Eric
Message:

[NBC_UserAdvManager] Merged from Trunk to Branch 2.12 :
Bug 1221 fixed - Adding of a new funtion to populate the lastvisit table on Ghost Tracker activation

Bug 1224 fixed - Error in database after plugin activation

Bug 1225 fixed - "Reminder" status don't change from "false" to "true" after the sent of a reminder email

Some code beautify (SQL requests and HTML 4 strict for tpl)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/branches/2.12/main.inc.php

    r4154 r4160  
    7676
    7777-- 2.12.1 : Rollback on admin panel improvement (it was a bad idea)
     78
     79-- 2.12.2 : Bug 1221 fixed - Adding of a new funtion to populate the lastvisit table on Ghost Tracker activation
     80            Bug 1224 fixed - Error in database after plugin activation
     81            Bug 1225 fixed - "Reminder" status don't change from "false" to "true" after the sent of a reminder email
     82            Some code beautify (SQL requests and HTML 4 strict for tpl)
    7883*/
    7984
     
    8186
    8287 ***** TODO List *****
    83 
    84 ++ !! Function to populate the #_user_lastvisit_check table from existing users
    85 
    8688++ No validation needed for admins users comments (new trigger needed in comments.php ?)
    8789
     
    9294 
    9395++ Security : Blocking brut-force attacks !
     96              -> Way to do that : Count the number of failed attempts to connect and lock the targetted account after x attempts. Where x will be settable by admin.
     97              To unlock the locked account :
     98               -> A new table in admin's plugin panel which would display the locked accounts.
     99               -> Sending an email to account owner to inform him his account is blocked due to multiple failed connexions attempts. This email could have a link with a security key to unlock the account.
     100               -> Both of above solutions ?
    94101
    95102++ Opportunity to copy a registered user for new user creation
     
    149156    $query = '
    150157SELECT *
    151 FROM '.USER_LASTVISIT_TABLE.'
     158  FROM '.USER_LASTVISIT_TABLE.'
    152159WHERE user_id = '.$userid.'
    153160;';
     
    202209function UserAdvManager_Deluser($user_id)
    203210{
     211  /* Cleanup for ConfirmMail table */
    204212  DeleteConfirmMail($user_id);
     213  /* Cleanup for LastVisit table */
     214  DeleteLastVisit($user_id);
    205215}
    206216
Note: See TracChangeset for help on using the changeset viewer.