aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2018-06-20 22:11:15 +0200
committerMarc Alexander <admin@m-a-styles.de>2018-06-20 22:11:15 +0200
commit9b56a28be0cfb0de66fb34c5a2965f965761e6e1 (patch)
treee07146d61c4f5355f8cf68eae08082d24e73de7f
parent754945e6fffcfe471f75ea90697d50f60fac3ae8 (diff)
parent0925a2206267fe5fc4a96321edeeaa6df74fba7f (diff)
downloadforums-9b56a28be0cfb0de66fb34c5a2965f965761e6e1.tar
forums-9b56a28be0cfb0de66fb34c5a2965f965761e6e1.tar.gz
forums-9b56a28be0cfb0de66fb34c5a2965f965761e6e1.tar.bz2
forums-9b56a28be0cfb0de66fb34c5a2965f965761e6e1.tar.xz
forums-9b56a28be0cfb0de66fb34c5a2965f965761e6e1.zip
Merge branch 'prep-release-3.2.3' into 3.2.x
-rw-r--r--phpBB/phpbb/filesystem/filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/filesystem/filesystem.php b/phpBB/phpbb/filesystem/filesystem.php
index 3f39448f05..bfafdf5ddd 100644
--- a/phpBB/phpbb/filesystem/filesystem.php
+++ b/phpBB/phpbb/filesystem/filesystem.php
@@ -367,7 +367,7 @@ class filesystem implements filesystem_interface
$common_php_group = @filegroup(__FILE__);
// And the owner and the groups PHP is running under.
- $php_uid = (function_exists('posic_getuid')) ? @posix_getuid() : false;
+ $php_uid = (function_exists('posix_getuid')) ? @posix_getuid() : false;
$php_gids = (function_exists('posix_getgroups')) ? @posix_getgroups() : false;
// If we are unable to get owner/group, then do not try to set them by guessing