Ignore:
Timestamp:
12/14/12 14:30:35 (11 years ago)
Author:
douglasz
Message:

Ticket #3236 - Melhorias de performance no codigo do Expresso.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/workflow/inc/smarty/plugins/function.html_select_time.php

    r795 r7655  
    8585        $hours       = $use_24_hours ? range(0, 23) : range(1, 12); 
    8686        $hour_fmt = $use_24_hours ? '%H' : '%I'; 
    87         for ($i = 0, $for_max = count($hours); $i < $for_max; $i++) 
     87        for ($i = 0, $for_max = count($hours); $i < $for_max; ++$i) 
    8888            $hours[$i] = sprintf('%02d', $hours[$i]); 
    8989        $html_result .= '<select name='; 
Note: See TracChangeset for help on using the changeset viewer.