Changeset 20514
- Timestamp:
- Feb 1, 2013, 10:37:38 PM (12 years ago)
- Location:
- extensions/UserAdvManager/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/UserAdvManager/trunk/changelog.txt.php
r19953 r20514 367 367 -- 2.41.3 : Bug 2818 fixed - "Reject user's connexion until registration is confirmed" should not reject admins connections 368 368 Update it_IT, thanks to : Ericnet 369 370 -- 2.41.4 : Bug 2829 fixed - Users add manually by admins are considered as valid by default. Admins or users don't have to validated the registration. 371 369 372 */ 370 373 ?> -
extensions/UserAdvManager/trunk/include/functions.inc.php
r19953 r20514 137 137 $passwd = (isset($_POST['password'])) ? $_POST['password'] : ''; 138 138 139 // No validation needed when admins add users - users are considered as valid by default 140 // ------------------------------------------------------------------------------------- 141 if (isset($page['page']) and ($page['page'] != 'user_list')) 142 { 139 143 if (isset($conf_UAM[1]) and $conf_UAM[1] == 'local') 140 144 { … … 168 172 } 169 173 } 174 } 170 175 } 171 176 } … … 2001 2006 if ( $conf['guest_access'] ) 2002 2007 { 2003 return( 2008 return(get_absolute_root_url().'?key='.$Confirm_Mail_ID.'&userid='.$user_id); 2004 2009 } 2005 2010 else 2006 2011 { 2007 return( 2012 return(get_absolute_root_url().'identification.php?key='.$Confirm_Mail_ID.'&userid='.$user_id); 2008 2013 } 2009 2014 } … … 2111 2116 if ( $conf['guest_access'] ) 2112 2117 { 2113 return( 2118 return(get_absolute_root_url().'?key='.$Confirm_Mail_ID.'&userid='.$user_id); 2114 2119 } 2115 2120 else 2116 2121 { 2117 return( 2122 return(get_absolute_root_url().'identification.php?key='.$Confirm_Mail_ID.'&userid='.$user_id); 2118 2123 } 2119 2124 }
Note: See TracChangeset
for help on using the changeset viewer.