Changeset 25018 for trunk/admin/batch_manager_unit.php
- Timestamp:
- Oct 19, 2013, 7:43:04 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/batch_manager_unit.php
r19703 r25018 104 104 } 105 105 106 array_push($datas, $data);106 $datas[] = $data; 107 107 108 108 // tags management … … 124 124 ); 125 125 126 array_push($page['infos'], l10n('Photo informations updated'));126 $page['infos'][] = l10n('Photo informations updated'); 127 127 } 128 128 … … 233 233 while ($row = pwg_db_fetch_assoc($result)) 234 234 { 235 array_push($element_ids, $row['id']);235 $element_ids[] = $row['id']; 236 236 237 237 $src_image = new SrcImage($row);
Note: See TracChangeset
for help on using the changeset viewer.