Changeset 15568 for trunk/administration
- Timestamp:
- 10/09/11 03:17:34 (8 months ago)
- File:
-
- 1 edited
-
trunk/administration/profiles.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/administration/profiles.php
r15211 r15568 94 94 } 95 95 else if(isset($_POST['adm-mp-delete']) && (bool)$_POST['members']) { 96 foreach($_POST['members'] as $iId) 97 $bResult = profile_delete((int)$iId); 96 $iIdCurr = getLoggedId(); 97 foreach($_POST['members'] as $iId) { 98 $iId = (int)$iId; 99 if ($iIdCurr != $iId) 100 $bResult = profile_delete($iId); 101 } 98 102 99 103 echo "<script>window.parent." . BX_DOL_ADM_MP_JS_NAME . ".reload();</script>";
Note: See TracChangeset
for help on using the changeset viewer.