Show
Ignore:
Timestamp:
10/20/2007 11:21:20 AM (14 months ago)
Author:
Shadowhand
Message:

Small changes:

  • Updated ORM a bit, data() is now a setter and a getter
  • Made views/kohana_profiler prettier
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/views/kohana_profiler.php

    r680 r860  
    7373<?php 
    7474 
    75 text::alternate(); 
     75// Moves the first benchmark (total execution time) to the end of the array 
     76$benchmarks = array_slice($benchmarks, 1) + array_slice($benchmarks, 0, 1); 
     77 
    7678foreach ($benchmarks as $name => $time): 
    7779