aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/filesystem/filesystem.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '3.2.x' into 3.3.xMarc Alexander2019-09-221-3/+3
|\
| * [ticket/15643] Fix open_basedir warningsAlfredo Ramos2019-09-031-3/+3
| | | | | | | | | | | | | | Suppress warnings when trying to call is_link(), is_dir() and is_file() on the web server root directory when open_basedir is set. PHPBB3-15643
* | [ticket/15255] Move language strings from acp/common to commonRubén Calvo2019-05-091-12/+12
|/ | | | PHPBB3-15255
* [ticket/15678] Fix PHP warning in filesystem.phprxu2018-06-011-1/+1
| | | | PHPBB3-15678
* [ticket/14972] replace all occurrences of sizeof() with the count()rxu2018-01-011-4/+4
| | | | PHPBB3-14972
* [ticket/13814] Prevent phpbb_is_writable() method from truncating filesrxu2015-05-041-1/+1
| | | | | | | phpbb_is_writable() of filesystem class uses 'w' mode to fopen files which causes checked files to be truncated. Use the 'c' mode instead. PHPBB3-13814
* [ticket/13697] Moving filesystem related functions to filesystem serviceMateBartus2015-04-161-0/+916
* Moving filesystem service to \phpbb\filesystem namespace * Wraping Symfony's Filesystem component * Moving filesystem related functions from includes/functions.php into \phpbb\filesystem\filesystem Functions moved (and deprecated): - phpbb_chmod - phpbb_is_writable - phpbb_is_absolute - phpbb_own_realpath - phpbb_realpath * Adding interface for filesystem service PHPBB3-13697