Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit 98151cd

Browse files
committed
Fix extensions loading
1 parent 76bbd82 commit 98151cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/core/src/pydio/Core/Utils/Vars/StatHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private static function getRegisteredExtensions(ContextInterface $ctx)
8585
if (!is_array(self::$extensionsCache) || !array_key_exists($ctx->getStringIdentifier(), self::$extensionsCache)) {
8686
$EXTENSIONS = array();
8787
$RESERVED_EXTENSIONS = array();
88-
include_once(AJXP_CONF_PATH."/extensions.conf.php");
88+
include(AJXP_CONF_PATH."/extensions.conf.php");
8989
$EXTENSIONS = array_merge($RESERVED_EXTENSIONS, $EXTENSIONS);
9090
foreach ($EXTENSIONS as $key => $value) {
9191
unset($EXTENSIONS[$key]);

0 commit comments

Comments
 (0)