Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-07-19 09:15:13 +0300
committerGitHub <noreply@github.com>2022-07-19 09:15:13 +0300
commit796d6b0dc76f7c26ee6d8075fec96228175e94d3 (patch)
treea4d81103a659021c0873cabacce8c2a31b96f1d5
parent9e3c8b6708419ef4ceccb0d7c561a8866be1cdfd (diff)
parent0f2e75a6ce4c9b737c35d20a7ae7237258a60d13 (diff)
Merge pull request #33270 from nextcloud/fix/noid/location-legacy-appfile
fix loading legacy app.php with multi app dir
-rw-r--r--lib/private/legacy/OC_App.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/OC_App.php b/lib/private/legacy/OC_App.php
index f290b7a610c..9fa13a56d38 100644
--- a/lib/private/legacy/OC_App.php
+++ b/lib/private/legacy/OC_App.php
@@ -183,7 +183,7 @@ class OC_App {
'app' => $app,
]);
try {
- self::requireAppFile($app);
+ self::requireAppFile($appPath);
} catch (Throwable $ex) {
if ($ex instanceof ServerNotAvailableException) {
throw $ex;