diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gallery/libraries/drivers/Identity.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/gallery/libraries/drivers/Identity.php b/modules/gallery/libraries/drivers/Identity.php index aa5bbd4c..e67547be 100644 --- a/modules/gallery/libraries/drivers/Identity.php +++ b/modules/gallery/libraries/drivers/Identity.php @@ -176,7 +176,9 @@ abstract class User_Definition { case "hash": case "url": case "locale": - return $this->user->$column; + Kohana::log("error", "__set($column, $value)"); + $this->user->$column = $value; + break; default: throw new Exception("@todo UNSUPPORTED FIELD: $column"); break; |