Changeset 25018 for trunk/include/dblayer/functions_mysqli.inc.php
- Timestamp:
- Oct 19, 2013, 7:43:04 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/dblayer/functions_mysqli.inc.php
r24346 r25018 366 366 $column.= " collate '".$row['Collation']."'"; 367 367 } 368 array_push($columns, $column);368 $columns[] = $column; 369 369 } 370 370 } … … 602 602 while ($row = pwg_db_fetch_row($result)) 603 603 { 604 array_push($all_tables, $row[0]);604 $all_tables[] = $row[0]; 605 605 } 606 606 … … 620 620 if ($row['Key'] == 'PRI') 621 621 { 622 array_push($all_primary_key, $row['Field']);622 $all_primary_key[] = $row['Field']; 623 623 } 624 624 } … … 636 636 if ($mysqli_rc) 637 637 { 638 array_push( 639 $page['infos'], 640 l10n('All optimizations have been successfully completed.') 641 ); 638 $page['infos'][] = l10n('All optimizations have been successfully completed.'); 642 639 } 643 640 else 644 641 { 645 array_push( 646 $page['errors'], 647 l10n('Optimizations have been completed with some errors.') 648 ); 642 $page['errors'][] = l10n('Optimizations have been completed with some errors.'); 649 643 } 650 644 }
Note: See TracChangeset
for help on using the changeset viewer.