Changeset 12314 for extensions/UserAdvManager/trunk/include
- Timestamp:
- Oct 2, 2011, 7:14:27 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/UserAdvManager/trunk/include/functions.inc.php
r12275 r12314 399 399 // ----------------------------------------------------- 400 400 if ((isset($conf_UAM[20]) and $conf_UAM[20] == 'true')) 401 { 401 { 402 402 $query =' 403 403 SELECT user_id, status … … 426 426 $data = pwg_db_fetch_assoc(pwg_query($query)); 427 427 428 if ($data['status'] <> " admin" and $data['status'] <> "webmaster" and $data['status'] <> "generic") // Exclusion of specific accounts428 if ($data['status'] <> "webmaster" and $data['status'] <> "generic") // Exclusion of specific accounts 429 429 { 430 430 if (UAM_check_pwgreset($user['id'])) … … 2800 2800 { 2801 2801 global $conf; 2802 2802 2803 $plugin = PluginInfos(UAM_PATH); 2804 $version = $plugin['version']; 2805 2803 2806 // Initial backup folder creation and file initialisation 2804 2807 // ------------------------------------------------------ … … 2810 2813 $fp = fopen($Backup_File, 'w'); 2811 2814 2815 // Writing plugin version 2816 $insertions = "-- ".$version." --\n\n"; 2817 fwrite($fp, $insertions); 2812 2818 2813 2819 // Saving UAM specific tables
Note: See TracChangeset
for help on using the changeset viewer.