From 61c710f934c2c7e7bf7b3196ac4b3f9dd169fd3d Mon Sep 17 00:00:00 2001 From: James Duncan Date: Fri, 21 Nov 2014 14:41:47 -0600 Subject: [PATCH] Fix bug in fillable array This bug prevented the country_id and state_id fields from being mass-assignable when updating a user. --- models/User.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/User.php b/models/User.php index f8d26d53..95cee70f 100644 --- a/models/User.php +++ b/models/User.php @@ -51,8 +51,8 @@ class User extends UserBase 'street_addr', 'city', 'zip', - 'country', - 'state' + 'country_id', + 'state_id' ]; /**