Customer model no longer forces ABN

This commit is contained in:
Karl Cordes 2009-07-17 14:57:44 +10:00
parent 6678f7a584
commit ae1825f1e6
2 changed files with 6 additions and 3 deletions

View file

@ -15,8 +15,10 @@ class Customer extends AppModel {
'abn' => array( 'abn' => array(
'rule' => 'checkABN', 'rule' => 'checkABN',
'message' => 'ABN must contain 11 digits' 'required' => true,
) 'message' => 'ABN must contain 11 digits',
'allowEmpty' => true,
)
); );

View file

@ -154,10 +154,11 @@ ul.principle-emails {
right:0; right:0;
width: 20%; width: 20%;
text-align: right; text-align: right;
color: #FFFFFF;
} }
#username a { #username a {
color: #000000; color: #FFFFFF;
} }
#nav { #nav {