Changeset 6026 for trunk/wp-includes/functions.php
- Timestamp:
- 09/03/2007 11:32:58 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r6025 r6026 9 9 return false; 10 10 } 11 $i = mktime( 12 (int) substr( $m, 11, 2 ), (int) substr( $m, 14, 2 ), (int) substr( $m, 17, 2 ), 13 (int) substr( $m, 5, 2 ), (int) substr( $m, 8, 2 ), (int) substr( $m, 0, 4 ) 11 $i = mktime( 12 (int) substr( $m, 11, 2 ), (int) substr( $m, 14, 2 ), (int) substr( $m, 17, 2 ), 13 (int) substr( $m, 5, 2 ), (int) substr( $m, 8, 2 ), (int) substr( $m, 0, 4 ) 14 14 ); 15 15 … … 183 183 184 184 // Allow plugins to short-circuit options. 185 $pre = apply_filters( 'pre_option_' . $setting, false ); 186 if ( false !== $pre ) 187 return $pre; 185 $pre = apply_filters( 'pre_option_' . $setting, false ); 186 if ( false !== $pre ) 187 return $pre; 188 188 189 189 // prevent non-existent options from triggering multiple queries … … 1204 1204 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 1205 1205 <link rel="stylesheet" href="<?php echo $admin_dir; ?>css/install.css" type="text/css" /> 1206 <?php 1206 <?php 1207 1207 if ( ( $wp_locale ) && ('rtl' == $wp_locale->text_direction) ) : ?> 1208 1208 <link rel="stylesheet" href="<?php echo $admin_dir; ?>css/install-rtl.css" type="text/css" /> … … 1221 1221 1222 1222 function _config_wp_home($url = '') { 1223 if ( defined( 'WP_HOME' ) ) 1223 if ( defined( 'WP_HOME' ) ) 1224 1224 return WP_HOME; 1225 1225 else return $url; … … 1227 1227 1228 1228 function _config_wp_siteurl($url = '') { 1229 if ( defined( 'WP_SITEURL' ) ) 1229 if ( defined( 'WP_SITEURL' ) ) 1230 1230 return WP_SITEURL; 1231 1231 else return $url;
Note: See TracChangeset
for help on using the changeset viewer.