From: avl Date: Tue, 9 Sep 2008 11:30:18 +0000 (+0300) Subject: Typo: '32 characters or fewer' = '32 characters or less' X-Git-Tag: 0.5~501 X-Git-Url: https://git.andy128k.dev/?a=commitdiff_plain;h=503c0928cd7cbc52cbc48ee77485bdbd1b1fe8e4;p=ipf.git Typo: '32 characters or fewer' = '32 characters or less' --- diff --git a/ipf/auth/forms/profile.php b/ipf/auth/forms/profile.php index f7a059a..336450d 100644 --- a/ipf/auth/forms/profile.php +++ b/ipf/auth/forms/profile.php @@ -13,6 +13,6 @@ class IPF_Auth_Forms_Profile extends IPF_Form_Model{ function addDBField($name,$col){ parent::addDBField($name, $col); if ($name=='username') - $this->fields['username']->help_text = 'Required. 32 characters or fewer. Alphanumeric characters only (letters, digits and underscores).'; + $this->fields['username']->help_text = 'Required. 32 characters or less. Alphanumeric characters only (letters, digits and underscores).'; } } diff --git a/ipf/auth/forms/usercreation.php b/ipf/auth/forms/usercreation.php index 29e942b..5ca893b 100644 --- a/ipf/auth/forms/usercreation.php +++ b/ipf/auth/forms/usercreation.php @@ -13,7 +13,7 @@ class IPF_Auth_Forms_UserCreation extends IPF_Form_Model{ function addDBField($name,$col){ parent::addDBField($name, $col); if ($name=='username') - $this->fields['username']->help_text = 'Required. 32 characters or fewer. Alphanumeric characters only (letters, digits and underscores).'; + $this->fields['username']->help_text = 'Required. 32 characters or less. Alphanumeric characters only (letters, digits and underscores).'; } function add__password1__field(){ diff --git a/ipf/auth/models/User.php b/ipf/auth/models/User.php index aa07524..16c8643 100644 --- a/ipf/auth/models/User.php +++ b/ipf/auth/models/User.php @@ -5,7 +5,7 @@ class AdminUser extends IPF_Admin_Model{ public function fields(){return array('username','password','email', 'first_name', 'last_name', 'is_active', 'is_staff', 'is_superuser');} protected function _setupForm($form){ - $form->fields['username']->help_text = 'Required. 32 characters or fewer. Alphanumeric characters only (letters, digits and underscores).'; + $form->fields['username']->help_text = 'Required. 32 characters or less. Alphanumeric characters only (letters, digits and underscores).'; $form->fields['password']->help_text = "Use '[algo]$[salt]$[hexdigest]' or use the change password form."; }