diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2008-05-18 18:58:42 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-05-18 18:58:42 +0000 |
commit | 41d8c20836f0393eb051540c98885da067abd549 (patch) | |
tree | f3b2c96735f46712043a1699eaa90d45ceaf2e89 | |
parent | 8dde998e87f69d9a88299e749f3f1d3d98be0561 (diff) | |
download | forums-41d8c20836f0393eb051540c98885da067abd549.tar forums-41d8c20836f0393eb051540c98885da067abd549.tar.gz forums-41d8c20836f0393eb051540c98885da067abd549.tar.bz2 forums-41d8c20836f0393eb051540c98885da067abd549.tar.xz forums-41d8c20836f0393eb051540c98885da067abd549.zip |
merge fix for bug #27355
git-svn-id: file:///svn/phpbb/trunk@8562 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/functions_content.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_content.php b/phpBB/includes/functions_content.php index a8e071e6ba..ee6c8ea4b1 100644 --- a/phpBB/includes/functions_content.php +++ b/phpBB/includes/functions_content.php @@ -574,7 +574,7 @@ function make_clickable_callback($type, $whitespace, $url, $relative_url, $class // don't touch it and let MAGIC_URL_FULL take care of it. if (!$relative_url) { - return $orig_url . '/'; // slash is taken away by relative url pattern + return $whitespace . $orig_url . '/'; // slash is taken away by relative url pattern } break; |