Ignore:
Timestamp:
Oct 19, 2013, 7:43:04 PM (11 years ago)
Author:
mistic100
Message:

remove all array_push (50% slower than []) + some changes missing for feature:2978

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/themes_installed.php

    r25005 r25018  
    6363foreach ($db_themes as $db_theme)
    6464{
    65   array_push($db_theme_ids, $db_theme['id']);
     65  $db_theme_ids[] = $db_theme['id'];
    6666}
    6767
     
    144144  }
    145145 
    146   array_push($tpl_themes, $tpl_theme);
     146  $tpl_themes[] = $tpl_theme;
    147147}
    148148
Note: See TracChangeset for help on using the changeset viewer.