diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-08-22 11:39:05 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-08-22 11:39:05 +0200 |
commit | 4aca46046b9f6674c1b30409d2f63cf6dd1efb0e (patch) | |
tree | e68437b88ea60fc319f8ee564f6a1a1806400d9c /core | |
parent | d14dd98211f1b6ab556a90cd93ee410ad3ca8b3e (diff) | |
download | nextcloud-server-4aca46046b9f6674c1b30409d2f63cf6dd1efb0e.tar.gz nextcloud-server-4aca46046b9f6674c1b30409d2f63cf6dd1efb0e.zip |
Add require_once to update.php due to routing
Fixes https://github.com/owncloud/core/issues/10585
Partially reverts 52d5429768acdb87b2dc2efedc89eb4ad0d29139
Diffstat (limited to 'core')
-rw-r--r-- | core/ajax/update.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index 5fca1808891..627ada080c8 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -1,5 +1,6 @@ <?php set_time_limit(0); +require_once '../../lib/base.php'; if (OC::checkUpgrade(false)) { $l = new \OC_L10N('core'); |