diff options
author | Clark Tomlinson <fallen013@gmail.com> | 2014-08-22 09:06:03 -0400 |
---|---|---|
committer | Clark Tomlinson <fallen013@gmail.com> | 2014-08-22 09:06:03 -0400 |
commit | 620610a3a7ac57fc43dc232bca9b74ac709f1ca5 (patch) | |
tree | eaf5b748cdf3b645421830b65197f754108ec589 | |
parent | 0e8916b14722c8f91ccbce8b12da4b23f4f4f59e (diff) | |
parent | 4aca46046b9f6674c1b30409d2f63cf6dd1efb0e (diff) | |
download | nextcloud-server-620610a3a7ac57fc43dc232bca9b74ac709f1ca5.tar.gz nextcloud-server-620610a3a7ac57fc43dc232bca9b74ac709f1ca5.zip |
Merge pull request #10590 from owncloud/fix-10585
Add require_once to update.php due to routing
-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'); |