mirror of
https://github.com/nextcloud/server.git
synced 2026-04-05 09:06:35 -04:00
Change parameter order of implode
This commit is contained in:
parent
875a8acedf
commit
bd3bf4b507
1 changed files with 1 additions and 1 deletions
|
|
@ -175,7 +175,7 @@ class OC {
|
|||
OC::$SERVERROOT . '/lib/private' . PATH_SEPARATOR .
|
||||
OC::$SERVERROOT . '/config' . PATH_SEPARATOR .
|
||||
OC::$THIRDPARTYROOT . '/3rdparty' . PATH_SEPARATOR .
|
||||
implode($paths, PATH_SEPARATOR) . PATH_SEPARATOR .
|
||||
implode(PATH_SEPARATOR, $paths) . PATH_SEPARATOR .
|
||||
get_include_path() . PATH_SEPARATOR .
|
||||
OC::$SERVERROOT
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue