Minor fixes for rendering

This commit is contained in:
Deon George
2016-08-26 15:02:40 +10:00
parent 68d96ca85f
commit e07fc159cf
4 changed files with 11 additions and 7 deletions

View File

@@ -32,7 +32,11 @@ abstract class lnApp_Auth_ORM extends Kohana_Auth_ORM {
* @return Model_Account|NULL The user that the token is valid for.
*/
protected function _get_token_user($token) {
list($id,$key) = explode(':',$token,2);
try {
list($id,$key) = explode(':',$token,2);
} catch (Exception $e) {
return ORM::factory('Account');
}
$uo = ORM::factory('Account',$id);