Changeset 22121
- Timestamp:
- Apr 10, 2013, 11:52:21 AM (12 years ago)
- Location:
- extensions/edit_gmaps
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/edit_gmaps/admin/admin_edit.php
r22117 r22121 88 88 ;'; 89 89 $result = pwg_query($query); 90 while ( $row= mysqli_fetch_assoc($result) )90 while ( $row=pwg_db_fetch_assoc($result) ) 91 91 $images[] = $row; 92 92 … … 251 251 if(!isset($_GET['cat'])) $_GET['cat']="tag-no"; 252 252 if (!empty($result)){ 253 while ($row = mysqli_fetch_assoc($result)) {253 while ($row = pwg_db_fetch_assoc($result)) { 254 254 $url = $admin_url.get_query_string_diff(array('start','cat')).'&cat='.$row['id']; 255 255 -
extensions/edit_gmaps/edit_gmaps.inc.php
r22117 r22121 44 44 $columns_of = array(); 45 45 $query = 'DESC '.$table.';'; 46 $result = mysqli_fetch($query);46 $result = pwg_db_fetch($query); 47 47 $columns_of[$table] = array(); 48 48 49 49 if ($result) 50 while ($row = mysqli_fetch_row($result))50 while ($row = pwg_db_fetch_row($result)) 51 51 array_push($columns_of[$table], $row[0]); 52 52
Note: See TracChangeset
for help on using the changeset viewer.