diff options
Diffstat (limited to 'application/models')
-rw-r--r-- | application/models/muser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/models/muser.php b/application/models/muser.php index f7da8c1fd..044e2b845 100644 --- a/application/models/muser.php +++ b/application/models/muser.php @@ -210,7 +210,7 @@ class Muser extends CI_Model { ", array($userid))->row_array(); if (empty($query)) { - return $this->default_upload_id_limits; + return explode("-", $this->default_upload_id_limits); } return explode("-", $query["upload_id_limits"]); |