diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2008-08-24 10:04:15 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-08-24 10:04:15 +0000 |
| commit | 589db44b5695730678f41c8d5868c73d4726054e (patch) | |
| tree | 9c86ddde29aa3a0f07aa4d7109fff0df1c4e33d7 /phpBB/includes/functions.php | |
| parent | 8174462e895966ce18c336b60dda93e562f4096f (diff) | |
| download | forums-589db44b5695730678f41c8d5868c73d4726054e.tar forums-589db44b5695730678f41c8d5868c73d4726054e.tar.gz forums-589db44b5695730678f41c8d5868c73d4726054e.tar.bz2 forums-589db44b5695730678f41c8d5868c73d4726054e.tar.xz forums-589db44b5695730678f41c8d5868c73d4726054e.zip | |
Merge of the language-specific custom path change Revision #r8782
git-svn-id: file:///svn/phpbb/trunk@8786 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
| -rw-r--r-- | phpBB/includes/functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index e17bbfd080..1d711540b0 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -588,7 +588,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ) case 'owner': $result = @chmod($filename, ($owner << 6) + (0 << 3) + (0 << 0)); - if (!is_null($php) || (!is_readable($filename) && is_writable($filename))) + if (!is_null($php) || (is_readable($filename) && is_writable($filename))) { break; } @@ -2168,7 +2168,7 @@ function generate_link_hash($link_name) /** * checks a link hash - for GET requests -* @param string $token the submitted token +* @param string $token the submitted token * @param string $link_name The name of the link * @return boolean true if all is fine */ |
