aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2018-06-01 22:51:53 +0700
committerrxu <rxu@mail.ru>2018-06-01 22:51:53 +0700
commitbd91b6be8733082f7d3ee1f081e04b1e8a929fa7 (patch)
treed6140c1a8e554166e44f445fddb9cadf7e5d1aa8
parentb5a79d9a9d587c5af6b2d71e5a22c08d1fd3735b (diff)
downloadforums-bd91b6be8733082f7d3ee1f081e04b1e8a929fa7.tar
forums-bd91b6be8733082f7d3ee1f081e04b1e8a929fa7.tar.gz
forums-bd91b6be8733082f7d3ee1f081e04b1e8a929fa7.tar.bz2
forums-bd91b6be8733082f7d3ee1f081e04b1e8a929fa7.tar.xz
forums-bd91b6be8733082f7d3ee1f081e04b1e8a929fa7.zip
[ticket/15678] Fix PHP warning in filesystem.php
PHPBB3-15678
-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