Changeset 9154 for extensions/NBC_UserAdvManager/branches/2.20/admin
- Timestamp:
- Feb 10, 2011, 6:18:57 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/NBC_UserAdvManager/branches/2.20/admin/UAM_admin.php
r9136 r9154 123 123 $_POST['UAM_CustomPasswRetr_Text'] = str_replace('\"', '"', str_replace("\'", "'", str_replace("\\\\", "\\", $_POST['UAM_CustomPasswRetr_Text']))); 124 124 125 // Check if CR-LF exist at begining and end of mail exclusion list - If yes, removes them125 // Check if CR-LF exist at begining and end of mail exclusion list - If yes, removes them 126 126 if (preg_match('/^[\s]+/', $_POST['UAM_MailExclusion_List'])) 127 127 { … … 551 551 } 552 552 553 // Avoid jquery accordeon menu bug when there is no users to display 554 if (empty($visible_user_list)) 555 { 556 $visible_user_list[] = null; 557 } 558 553 559 foreach ($visible_user_list as $local_user) 554 560 { … … 1022 1028 } 1023 1029 1030 // Avoid jquery accordeon menu bug when there is no users to display 1031 if (empty($visible_user_list)) 1032 { 1033 $visible_user_list[] = null; 1034 } 1035 1024 1036 foreach ($visible_user_list as $local_user) 1025 1037 { … … 1422 1434 } 1423 1435 1424 //Plugin version inserted 1425 $template->assign( 1426 array( 1427 'UAM_VERSION' => $version, 1428 'UAM_PATH' => UAM_PATH, 1429 ) 1430 ); 1431 1436 // Avoid jquery accordeon menu bug when there is no users to display 1437 if (empty($visible_user_list)) 1438 { 1439 $visible_user_list[] = null; 1440 } 1441 1432 1442 foreach ($visible_user_list as $local_user) 1433 1443 { … … 1465 1475 } 1466 1476 1477 //Plugin version inserted 1478 $template->assign( 1479 array( 1480 'UAM_VERSION' => $version, 1481 'UAM_PATH' => UAM_PATH, 1482 ) 1483 ); 1484 1467 1485 // +-----------------------------------------------------------------------+ 1468 1486 // | errors display |
Note: See TracChangeset
for help on using the changeset viewer.