Changeset 4265 for trunk/admin/user_perm.php
- Timestamp:
- Nov 15, 2009, 1:26:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/user_perm.php
r3282 r4265 79 79 ;'; 80 80 $result = pwg_query($query); 81 while ($row = mysql_fetch_a rray($result))81 while ($row = mysql_fetch_assoc($result)) 82 82 { 83 83 array_push($private_uppercats, $row['id']); … … 96 96 $result = pwg_query($query); 97 97 98 while ($row = mysql_fetch_a rray($result))98 while ($row = mysql_fetch_assoc($result)) 99 99 { 100 100 array_push($authorized_ids, $row['cat_id']); … … 159 159 { 160 160 $cats = array(); 161 while ($row = mysql_fetch_a rray($result))161 while ($row = mysql_fetch_assoc($result)) 162 162 { 163 163 array_push($cats, $row); … … 192 192 $result = pwg_query($query_true); 193 193 $authorized_ids = array(); 194 while ($row = mysql_fetch_a rray($result))194 while ($row = mysql_fetch_assoc($result)) 195 195 { 196 196 array_push($authorized_ids, $row['id']);
Note: See TracChangeset
for help on using the changeset viewer.