diff options
author | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2014-07-29 22:45:24 +0300 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-07-30 14:03:31 +0200 |
commit | eb9bd200fac70cd49f650d18a7190be7969955bf (patch) | |
tree | 62a4ba7b729c1fb3e7060cc5e89d0e26550441b6 /lib/base.php | |
parent | 31e7fdb9bff367b4e5ca7d6ca12787e536b0bc74 (diff) | |
download | nextcloud-server-eb9bd200fac70cd49f650d18a7190be7969955bf.tar.gz nextcloud-server-eb9bd200fac70cd49f650d18a7190be7969955bf.zip |
Replace exit with return
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index 56b2bec7f6c..dc09b61490a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -148,7 +148,7 @@ class OC { echo('3rdparty directory not found! Please put the ownCloud 3rdparty' . ' folder in the ownCloud folder or the folder above.' . ' You can also configure the location in the config.php file.'); - exit(); + return; } // search the apps folder |