Ignore:
Timestamp:
Aug 22, 2009, 12:38:03 AM (15 years ago)
Author:
Eric
Message:

Compatibility bug fixed when used with DynamicRecentPeriod plugin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/trunk/main.inc.php

    r3742 r3775  
    3636
    3737-- 2.10.9a : Email provider exclusion is no longer case sensitive
     38
     39-- 2.10.9b : Bug fixed - Home icon wasn't linked to gallery url in ConfirmMail page. If GALLERY_URL is not set, Home icon gets the pwg root path.
     40
     41-- 2.10.9c : Bug fixed - If Email provider exclusion is set off, new registered user will have a PHP notice on "Undefined variable: ncsemail"
     42
     43-- 2.10.9d : Code simplification - need no more ""template"" sub-directory in plugin directory for enhance "back link" icon in ConfirMail.tpl
     44
     45-- 2.10.9e : Compatibility improvement with PHP 5.3 - Some old functions will be deprecated like :
     46                                ereg replaced by preg_match
     47                                eregi replace by preg_match with "i" moderator
     48                                split replace by preg_split
     49                               
     50-- 2.10.9f : Compatibility bug fixed when used with DynamicRecentPeriod plugin
    3851
    3952-- 2.11.0 : New tabsheet menu to manage ConfirMail functions (setting a timeout without validation, Cleanup expired user's accounts, Force confirmation, Force expiration, list unvalidated users,...)
     
    292305        }
    293306        // periods must be integer values, they represents number of days
    294         if (!preg_match($int_pattern, $_POST['recent_period'])
     307        /* Commented to fix compatibility problem with Dynamic Recent Period Plugin */
     308        /* This don't impact the plugin functionnalities */
     309        /*if (!preg_match($int_pattern, $_POST['recent_period'])
    295310            or $_POST['recent_period'] <= 0)
    296311        {
    297312          $errors[] = l10n('periods_error') ;
    298         }
     313        }*/
    299314
    300315        if (isset($_POST['mail_address']))
Note: See TracChangeset for help on using the changeset viewer.