Changeset 1734 for trunk/wp-settings.php
- Timestamp:
- 10/04/2004 08:03:52 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r1712 r1734 10 10 die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.1' ); 11 11 12 function timer_start() { 13 global $timestart; 14 $mtime = explode(' ', microtime() ); 15 $mtime = $mtime[1] + $mtime[0]; 16 $timestart = $mtime; 17 return true; 18 } 19 timer_start(); 12 20 13 21 // Change to E_ALL for development/debugging … … 41 49 42 50 require (ABSPATH . WPINC . '/functions.php'); 43 timer_start();44 51 require (ABSPATH . WPINC . '/functions-formatting.php'); 45 52 require (ABSPATH . WPINC . '/functions-user.php');
Note: See TracChangeset
for help on using the changeset viewer.