Changeset 4344
- Timestamp:
- 10/04/2006 10:00:26 PM (19 years ago)
- Location:
- branches/2.0
- Files:
-
- 2 edited
-
wp-admin/admin-footer.php (modified) (1 diff)
-
wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-admin/admin-footer.php
r3492 r4344 3 3 <p> 4 4 <a href="http://codex.wordpress.org/"><?php _e('Documentation'); ?></a> — <a href="http://wordpress.org/support/"><?php _e('Support Forums'); ?></a> <br /> 5 <?php bloginfo('version'); ?> — <?php printf(__('%s seconds'), number_format(timer_stop(), 2)); ?>5 <?php bloginfo('version'); ?> — <?php printf(__('%s seconds'), timer_stop(0, 2)); ?> 6 6 </p> 7 7 -
branches/2.0/wp-includes/functions.php
r4290 r4344 845 845 $timeend = $mtime; 846 846 $timetotal = $timeend-$timestart; 847 $r = number_format($timetotal, $precision); 847 848 if ( $display ) 848 echo number_format($timetotal,$precision);849 return $ timetotal;849 echo $r; 850 return $r; 850 851 } 851 852
Note: See TracChangeset
for help on using the changeset viewer.