Show
Ignore:
Timestamp:
12/06/2007 08:15:37 PM (13 months ago)
Author:
Shadowhand
Message:

Changes to core:

  • date::timestamp() variable name typo
  • form::input() no longer puts an id on array-keyed inputs
  • form::label() no longer
  • added arr::unshift_assoc()
  • replace a couple of internal find_all() calls with load_result(TRUE) to avoid an extra method call
  • fixed a bug in Mysql_Result::result_array() that made multiple calls fail after the first call do to the pointer not being reset
  • small code and comment cleanups
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/helpers/date.php

    r1333 r1437  
    298298        { 
    299299                // Default values 
    300                 $time1  = max(0, (int) $time); 
     300                $time1  = max(0, (int) $time1); 
    301301                $time2  = ($time2 === FALSE) ? time() : max(0, (int) $time2); 
    302302