s/Wether/Whether/

git-svn-id: https://develop.svn.wordpress.org/trunk@15756 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2010-10-08 02:35:06 +00:00
parent b040a1790a
commit a1cd90933d
5 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -421,7 +421,7 @@ function delete_blog_option( $id, $key ) {
* @param int $id The blog id
* @param string $key The option key
* @param mixed $value The option value
* @param bool $refresh Wether to refresh blog details or not
* @param bool $refresh Whether to refresh blog details or not
*/
function update_blog_option( $id, $key, $value, $refresh = true ) {
$id = (int) $id;
@@ -449,7 +449,7 @@ function update_blog_option( $id, $key, $value, $refresh = true ) {
* @since MU
*
* @param int $new_blog The id of the blog you want to switch to. Default: current blog
* @param bool $validate Wether to check if $new_blog exists before proceeding
* @param bool $validate Whether to check if $new_blog exists before proceeding
* @return bool True on success, False if the validation failed
*/
function switch_to_blog( $new_blog, $validate = false ) {
@@ -586,7 +586,7 @@ function restore_current_blog() {
* @since MU
*
* @param int $id The blog id
* @return string Wether the blog is archived or not
* @return string Whether the blog is archived or not
*/
function is_archived( $id ) {
return get_blog_status($id, 'archived');