Ignore:
Timestamp:
Nov 19, 2009, 10:51:47 PM (14 years ago)
Author:
Eric
Message:

[NBC_UserAdvManager]
Bug 1238 fixed - Simple custom email text wasn't send when Extended Description plugin wasn't set
Bug 1245 fixed - Semicolons (;) are no longer allowed in text areas (mail info text, ConfirmMail text, reminder text,...). They'll be replaced by dots (.).
Bug 1248 fixed - Php notice on user registration with a forbidden email domain
Bug 1250 fixed - Email provider didn't work after the third exclusion in list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/trunk/include/functions_UserAdvManager.inc.php

    r4290 r4316  
    644644
    645645/* Function called from main.inc.php - Check if user's email is in excluded email providers list */
     646/* Doesn't work on call - Must be copied in main.inc.php to work */
    646647function ValidateEmailProvider($email)
    647648{
     
    657658                        $pattern = '/'.$conf_nbc_MailExclusion[$i].'/';
    658659                        if (preg_match($pattern, $ncsemail))
     660      {
    659661                        return false;
    660                 else
     662      }
     663      else
     664      {
    661665                        return true;
     666      }
    662667                }
    663668        }
Note: See TracChangeset for help on using the changeset viewer.