Changeset 18827 for trunk/wp-includes/load.php
- Timestamp:
- 09/29/2011 10:57:43 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/load.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/load.php
r18545 r18827 187 187 * @access private 188 188 * @since 0.71 189 * @global int $timestart Seconds and Microseconds added together from when function is called.189 * @global int $timestart Seconds and microseconds added together from when function is called. 190 190 * @return bool Always returns true. 191 191 */ … … 211 211 * </code> 212 212 * which will do what the above does. If you need the result, you can assign it to a variable, but 213 * most cases, you only need to echo it.213 * in most cases, you only need to echo it. 214 214 * 215 215 * @since 0.71 216 * @global int $timestart Seconds and Microseconds added together from when timer_start() is called217 * @global int $timeend Seconds and Microseconds added together from when function is called216 * @global int $timestart Seconds and microseconds added together from when timer_start() is called 217 * @global int $timeend Seconds and microseconds added together from when function is called 218 218 * 219 219 * @param int $display Use '0' or null to not echo anything and 1 to echo the total time … … 288 288 * To set directory manually, define <code>WP_LANG_DIR</code> in wp-config.php. 289 289 * 290 * If the language directory exists within WP_CONTENT_DIR that is used291 * Otherwise if the language directory exists within WPINC, that's used 292 * Finally, If neither of the preceeding directories isfound,290 * If the language directory exists within WP_CONTENT_DIR, that is used. 291 * Otherwise if the language directory exists within WPINC, that's used. 292 * Finally, if neither of the preceding directories are found, 293 293 * WP_CONTENT_DIR/languages is used. 294 294 * … … 397 397 // Sometimes advanced-cache.php can load object-cache.php before it is loaded here. 398 398 // This breaks the function_exists check above and can result in $_wp_using_ext_object_cache 399 // being set incorrectly. Double check if an external cache exists.399 // being set incorrectly. Double check if an external cache exists. 400 400 $_wp_using_ext_object_cache = true; 401 401 }
Note: See TracChangeset
for help on using the changeset viewer.