Show
Ignore:
Timestamp:
02/06/12 21:59:20 (16 months ago)
Author:
rvelices
Message:

multisize - added the coi (still to affine the admin ui + language)
multisize - derivatives can be revuild from a larger derviative instead of the original

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/include/dblayer/functions_mysql.inc.php

    r12922 r13038  
    8585  global $conf,$page,$debug,$t2; 
    8686 
    87   $start = get_moment(); 
     87  $start = microtime(true); 
    8888  ($result = mysql_query($query)) or my_error($query, $conf['die_on_sql_error']); 
    8989 
    90   $time = get_moment() - $start; 
     90  $time = microtime(true) - $start; 
    9191 
    9292  if (!isset($page['count_queries'])) 
     
    200200  while ($row = mysql_fetch_assoc($result)) 
    201201  { 
    202     array_push($array, $row[$fieldname]); 
     202    $array[] = $row[$fieldname]; 
    203203  } 
    204204