~ubuntu-branches/debian/sid/wordpress/sid

« back to all changes in this revision

Viewing changes to wp-settings.php

  • Committer: Package Import Robot
  • Author(s): Craig Small
  • Date: 2014-01-24 22:20:08 UTC
  • mfrom: (1.2.31)
  • Revision ID: package-import@ubuntu.com-20140124222008-wgyk0hvmhjkubf9i
Tags: 3.8.1+dfsg-1
* New upstream release.
* Depend on either mysql or mariadb client Closes: #732914

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
// Include files required for initialization.
21
21
require( ABSPATH . WPINC . '/load.php' );
22
22
require( ABSPATH . WPINC . '/default-constants.php' );
 
23
 
 
24
/*
 
25
 * These can't be directly globalized in version.php. When updating,
 
26
 * we're including version.php from another install and don't want
 
27
 * these values to be overridden if already set.
 
28
 */
 
29
global $wp_version, $wp_db_version, $tinymce_version, $required_php_version, $required_mysql_version;
23
30
require( ABSPATH . WPINC . '/version.php' );
24
31
 
25
32
// Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE.
219
226
 *
220
227
 * Pluggable functions are also available at this point in the loading order.
221
228
 *
222
 
 * @since 1.5.2
 
229
 * @since 1.5.0
223
230
 */
224
231
do_action( 'plugins_loaded' );
225
232
 
335
342
 *
336
343
 * If you wish to plug an action once WP is loaded, use the wp_loaded hook below.
337
344
 *
338
 
 * @since 1.5.2
 
345
 * @since 1.5.0
339
346
 */
340
347
do_action( 'init' );
341
348