Changeset 4345
- Timestamp:
- 10/04/2006 10:00:53 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
wp-admin/admin-footer.php (modified) (1 diff)
-
wp-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-footer.php
r4259 r4345 4 4 <p> 5 5 <?php _e('<a href="http://codex.wordpress.org/">Documentation</a>'); ?> — <?php _e('<a href="http://wordpress.org/support/">Support Forums</a>'); ?> <br /> 6 <?php bloginfo('version'); ?> — <?php printf(__('%s seconds'), number_format(timer_stop(), 2)); ?>6 <?php bloginfo('version'); ?> — <?php printf(__('%s seconds'), timer_stop(0, 2)); ?> 7 7 </p> 8 8 </div> -
trunk/wp-settings.php
r4203 r4345 68 68 $timeend = $mtime; 69 69 $timetotal = $timeend-$timestart; 70 $r = number_format($timetotal, $precision); 70 71 if ( $display ) 71 echo number_format($timetotal,$precision);72 return $ timetotal;72 echo $r; 73 return $r; 73 74 } 74 75 timer_start();
Note: See TracChangeset
for help on using the changeset viewer.