check if RUNTIME_NOAPPS is set before using it

remotes/origin/stable45
Arthur Schiwon 13 years ago
parent 0dc3ffd29a
commit 77b57fbbfe
  1. 2
      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'));
}

Loading…
Cancel
Save