Changeset 13425
- Timestamp:
- 02/26/2010 05:46:08 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/misc.php
r13409 r13425 129 129 $htaccess_file = $home_path.'.htaccess'; 130 130 131 // If the file doesn't already exist scheck for write access to the directory and whether we have some rules.131 // If the file doesn't already exist check for write access to the directory and whether we have some rules. 132 132 // else check for write access to the file. 133 133 if ((!file_exists($htaccess_file) && is_writable($home_path) && $wp_rewrite->using_mod_rewrite_permalinks()) || is_writable($htaccess_file)) { -
trunk/wp-admin/includes/template.php
r13423 r13425 1823 1823 if ( current_user_can( 'edit_user', $user_object->ID ) ) { 1824 1824 // Set up the user editing link 1825 // TODO: make profile/user-edit determination a sep erate function1825 // TODO: make profile/user-edit determination a separate function 1826 1826 if ($current_user->ID == $user_object->ID) { 1827 1827 $edit_link = 'profile.php'; -
trunk/wp-admin/options-general.php
r12753 r13425 144 144 <?php endif; ?> 145 145 <br /> 146 <span class="description"><?php _e('Unfortunately, you have to manually update this for Daylight Savings Time. Lame, we know, but will be fixed in the future.'); ?></span>146 <span class="description"><?php _e('Unfortunately, you have to manually update this for daylight saving time. Lame, we know, but will be fixed in the future.'); ?></span> 147 147 </td> 148 148 <?php … … 186 186 <?php 187 187 $now = localtime(time(),true); 188 if ($now['tm_isdst']) _e('This timezone is currently in daylight saving stime.');188 if ($now['tm_isdst']) _e('This timezone is currently in daylight saving time.'); 189 189 else _e('This timezone is currently in standard time.'); 190 190 ?> … … 203 203 echo ' '; 204 204 $message = $tr['isdst'] ? 205 __('Daylight saving stime begins on: <code>%s</code>.') :205 __('Daylight saving time begins on: <code>%s</code>.') : 206 206 __('Standard time begins on: <code>%s</code>.'); 207 207 printf( $message, date_i18n(get_option('date_format').' '.get_option('time_format'), $tr['ts'] ) ); 208 208 } else { 209 _e('This timezone does not observe daylight saving stime.');209 _e('This timezone does not observe daylight saving time.'); 210 210 } 211 211 } -
trunk/wp-includes/class-smtp.php
r11341 r13425 266 266 * that is to be send with the headers. Each header needs to be 267 267 * on a single line followed by a <CRLF> with the message headers 268 * and the message body being sep erated by and additional <CRLF>.268 * and the message body being separated by and additional <CRLF>. 269 269 * 270 270 * Implements rfc 821: DATA <CRLF> -
trunk/wp-includes/classes.php
r13323 r13425 923 923 /* 924 924 * need to display in hierarchical order 925 * sep erate elements into two buckets: top level and children elements925 * separate elements into two buckets: top level and children elements 926 926 * children_elements is two dimensional array, eg. 927 927 * children_elements[10][] contains all sub-elements whose parent is 10. … … 1037 1037 1038 1038 /* 1039 * sep erate elements into two buckets: top level and children elements1039 * separate elements into two buckets: top level and children elements 1040 1040 * children_elements is two dimensional array, eg. 1041 1041 * children_elements[10][] contains all sub-elements whose parent is 10. -
trunk/wp-includes/deprecated.php
r13399 r13425 1256 1256 * 1257 1257 * @param int $comment_ID The ID of the comment 1258 * @param int $no_cache Whether to use the cache (cast edto bool)1258 * @param int $no_cache Whether to use the cache (cast to bool) 1259 1259 * @param bool $include_unapproved Whether to include unapproved comments 1260 1260 * @return array The comment data -
trunk/wp-includes/general-template.php
r13398 r13425 168 168 * Display the Log In/Out link. 169 169 * 170 * Displays a link, which allows the userto navigate to the Log In page to log in170 * Displays a link, which allows users to navigate to the Log In page to log in 171 171 * or log out depending on whether they are currently logged in. 172 172 * -
trunk/wp-includes/load.php
r13253 r13425 229 229 * 230 230 * WP_DEBUG_DISPLAY and WP_DEBUG_LOG perform no function unless WP_DEBUG is true. 231 * WP_DEBUG defaults defaultsto false.231 * WP_DEBUG defaults to false. 232 232 * 233 233 * When WP_DEBUG is true, all PHP notices are reported. WordPress will also display -
trunk/wp-includes/post-template.php
r13382 r13425 1007 1007 * 1008 1008 * This template tag allows you to determine if you are in a page template. 1009 * You can optional provide a template name and then the check will be1009 * You can optionally provide a template name and then the check will be 1010 1010 * specific to that template. 1011 1011 *
Note: See TracChangeset
for help on using the changeset viewer.