diff options
author | Andrey Andreev <narf@devilix.net> | 2014-01-24 23:28:10 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-01-24 23:28:10 +0100 |
commit | af9aa2b5bfa9d6060b18a0df9ebb710135c6c6ee (patch) | |
tree | df3a1f711f94ca35a865eba08c0a4eb18bf7b06e /user_guide_src | |
parent | c35327fd05b3f06916afe4a5b5fbedc9648a2e08 (diff) |
[ci skip] Add a note to the is_really_writable() docs
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/general/common_functions.rst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/user_guide_src/source/general/common_functions.rst b/user_guide_src/source/general/common_functions.rst index 65ca026a1..e2536de4c 100644 --- a/user_guide_src/source/general/common_functions.rst +++ b/user_guide_src/source/general/common_functions.rst @@ -32,10 +32,10 @@ loading any libraries or helpers. greater than the supplied version number. Returns FALSE if the installed version of PHP is lower than the supplied version number. - .. function:: is_really_writable($file) +.. function:: is_really_writable($file) - :param string $file: File path - :returns: bool + :param string $file: File path + :returns: bool ``is_writable()`` returns TRUE on Windows servers when you really can't write to the file as the OS reports to PHP as FALSE only if the @@ -56,6 +56,8 @@ loading any libraries or helpers. echo "File is not writable"; } + .. note:: See also `PHP bug #54709 <https://bugs.php.net/bug.php?id=54709>`_ for more info. + .. function:: config_item($key) :param string $key: Config item key |