s/existant/existent/

git-svn-id: https://develop.svn.wordpress.org/trunk@13380 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-02-24 20:01:37 +00:00
parent 85b1895890
commit d7adf00e0e
2 changed files with 2 additions and 2 deletions

View File

@ -334,7 +334,7 @@ class WP_Filesystem_FTPext extends WP_Filesystem_Base {
$list = @ftp_rawlist($this->link, '-a ' . $path, false);
if ( empty($list) ) // Empty array = non-existant folder(real folder will show . at least
if ( empty($list) ) // Empty array = non-existent folder (real folder will show . at least)
return false;
$dirlist = array();

View File

@ -57,7 +57,7 @@ if (isset($_GET['updated'])) {
<label><input name="registration" type="radio" id="registration4" value='blog' <?php checked( get_site_option('registration'), 'blog') ?> /> <?php _e('Only logged in users can create new sites.'); ?></label><br />
<p><?php _e('Disable or enable registration and who or what can be registered. (Default=Disabled)'); ?></p>
<?php if ( is_subdomain_install() ) {
echo '<p>' . __('If registration is disabled, please set "NOBLOGREDIRECT" in wp-config.php to a url you will redirect visitors to if they visit a non existant site.') . '</p>';
echo '<p>' . __('If registration is disabled, please set "NOBLOGREDIRECT" in wp-config.php to a url you will redirect visitors to if they visit a non-existent site.') . '</p>';
} ?>
</td>
</tr>