Forgot to assign param.
This commit is contained in:
parent
c691c9d24c
commit
7c7031df44
1 changed files with 1 additions and 3 deletions
|
@ -52,9 +52,7 @@ class OC_VCategories {
|
|||
*/
|
||||
public function __construct($app, $user=null) {
|
||||
$this->app = $app;
|
||||
if(is_null($user)) {
|
||||
$this->user = OC_User::getUser();
|
||||
}
|
||||
$this->user = is_null($user) ? OC_User::getUser() : $user;
|
||||
$this->categories = OC_VObject::unescapeSemicolons(OC_Preferences::getValue($this->user, $app, self::PREF_CATEGORIES_LABEL, ''));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue