]> git.andy128k.dev Git - ipf.git/commitdiff
Typo: '32 characters or fewer' = '32 characters or less'
authoravl <alex.litovchenko@gmail.com>
Tue, 9 Sep 2008 11:30:18 +0000 (14:30 +0300)
committeravl <alex.litovchenko@gmail.com>
Tue, 9 Sep 2008 11:30:18 +0000 (14:30 +0300)
ipf/auth/forms/profile.php
ipf/auth/forms/usercreation.php
ipf/auth/models/User.php

index f7a059a72d1e39996d4c687be1c18904f01fd879..336450d5be47f211f4a502458aa0c9a031022bf8 100644 (file)
@@ -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).';
     }
 }
index 29e942b269e25b67bceb31ee1993a7bbe1794de1..5ca893b9c0a69e5d51be2796e06f0d4e62c6a996 100644 (file)
@@ -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(){
index aa0752408e2ab928a9492717ddd814d2961bc871..16c864304d2ae4fa3a6a125cdf437d8da7cca4c0 100644 (file)
@@ -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 <a href=\"password/\">change password form</a>.";
     }