Ticket #11875: grammar.11875.diff
File grammar.11875.diff, 2.5 KB (added by , 13 years ago) |
---|
-
wp-includes/post-template.php
1006 1006 * Whether currently in a page template. 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 * 1012 1012 * @since 2.5.0 -
wp-includes/general-template.php
167 167 /** 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 * 173 173 * @since 1.5.0 -
wp-includes/deprecated.php
1255 1255 * @see get_comment() 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 1261 1261 */ … … 2411 2411 do_action( 'updated_usermeta', $cur->umeta_id, $user_id, $meta_key, $meta_value ); 2412 2412 2413 2413 return true; 2414 } 2415 No newline at end of file 2414 } -
wp-admin/includes/misc.php
128 128 $home_path = get_home_path(); 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)) { 134 134 if ( got_mod_rewrite() ) {