Ticket #30499: 30499.diff
| File 30499.diff, 745 bytes (added by , 10 years ago) |
|---|
-
wp-includes/default-constants.php
13 13 * @since 3.0.0 14 14 * 15 15 * @global int $blog_id 16 * @global string $wp_version 16 17 */ 17 18 function wp_initial_constants() { 18 global $blog_id ;19 global $blog_id, $wp_version; 19 20 20 21 // set memory limits 21 22 if ( !defined('WP_MEMORY_LIMIT') ) { … … 121 122 define( 'GB_IN_BYTES', 1024 * MB_IN_BYTES ); 122 123 define( 'TB_IN_BYTES', 1024 * GB_IN_BYTES ); 123 124 /**#@-*/ 125 126 /**#@+ 127 * Constant which stores the WordPress version. 128 * 129 * @since 4.6.0 130 */ 131 define( 'WP_VERSION', $wp_version ); 132 /**#@-*/ 124 133 } 125 134 126 135 /**