Skip to content

Commit

Permalink
Fixes #520 postal code requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Feb 13, 2015
1 parent 17258b7 commit f40bb7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/Location.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Location extends Elegant
'country' => 'required|alpha_space|min:2|max:2|max:2',
'address' => 'required|alpha_space|min:5|max:80',
'address2' => 'alpha_space|min:5|max:80',
'zip' => 'alpha_dash|min:3|max:10',
'zip' => 'alpha_space|min:3|max:10',
);

public function has_users()
Expand Down

0 comments on commit f40bb7b

Please sign in to comment.