diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-12 23:16:18 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-13 19:08:14 +0100 |
commit | bd3bf4b507c04aba38fc368526767fe6bb7b1bd3 (patch) | |
tree | 8bf874d2faebfdbe1503ec29e8bee922ee6b7acb /lib | |
parent | 875a8acedf98f5702d95a8054c68110247c933ba (diff) | |
download | nextcloud-server-bd3bf4b507c04aba38fc368526767fe6bb7b1bd3.tar.gz nextcloud-server-bd3bf4b507c04aba38fc368526767fe6bb7b1bd3.zip |
Change parameter order of implode
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index be613706e64..f3a15e0355f 100644 --- a/lib/base.php +++ b/lib/base.php @@ -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 ); |