diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2012-10-28 15:10:15 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2012-10-28 15:10:22 +0100 |
commit | be215a097ae5c4838c7d8928cfab0345d884ed56 (patch) | |
tree | e43f9d53aa30909a77db68ac61685de5cdb3aa9e /lib | |
parent | f2f2b8ba3b315365591784dcc1c172625768f241 (diff) | |
download | nextcloud-server-be215a097ae5c4838c7d8928cfab0345d884ed56.tar.gz nextcloud-server-be215a097ae5c4838c7d8928cfab0345d884ed56.zip |
check if RUNTIME_NOAPPS is set before using it
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index f67f8d1fe3f..69f29f12228 100755 --- a/lib/util.php +++ b/lib/util.php @@ -25,7 +25,7 @@ class OC_Util { } // load all filesystem apps before, so no setup-hook gets lost - if(!$RUNTIME_NOAPPS) { + if(!isset($RUNTIME_NOAPPS) || !$RUNTIME_NOAPPS) { OC_App::loadApps(array('filesystem')); } |