mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/15678] Fix PHP warning in filesystem.php
PHPBB3-15678
This commit is contained in:
parent
b5a79d9a9d
commit
bd91b6be87
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue