diff options
author | Marc Alexander <admin@m-a-styles.de> | 2018-06-20 22:08:37 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-06-20 22:08:37 +0200 |
commit | 0925a2206267fe5fc4a96321edeeaa6df74fba7f (patch) | |
tree | 0914f0e316c724f05e55cbd818156f48bccbea9b /phpBB/phpbb | |
parent | ecf19b13c81c4db3aea7f5daa5e4e35994b3e689 (diff) | |
parent | bd91b6be8733082f7d3ee1f081e04b1e8a929fa7 (diff) | |
download | forums-0925a2206267fe5fc4a96321edeeaa6df74fba7f.tar forums-0925a2206267fe5fc4a96321edeeaa6df74fba7f.tar.gz forums-0925a2206267fe5fc4a96321edeeaa6df74fba7f.tar.bz2 forums-0925a2206267fe5fc4a96321edeeaa6df74fba7f.tar.xz forums-0925a2206267fe5fc4a96321edeeaa6df74fba7f.zip |
Merge pull request #5233 from rxu/ticket/15678
[ticket/15678] Fix PHP warning in filesystem.php
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/filesystem/filesystem.php | 2 |
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 |