1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

bugfixes. :/ An ugly one included as a temporary solution...

git-svn-id: file:///svn/phpbb/trunk@7476 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-05-05 18:09:58 +00:00
parent 95c564636f
commit fb5f24578b
4 changed files with 21 additions and 8 deletions

View File

@@ -1031,8 +1031,23 @@ class parse_message extends bbcode_firstpass
// Parse URL's
if ($allow_magic_url)
{
$replaced = false;
// We have the bbcode uid here, let's at least try to circumvent a specific bug...
if ($allow_bbcode && strpos($this->message, '[/quote:' . $this->bbcode_uid . ']') !== false && strpos($this->message, '":' . $this->bbcode_uid . ']') !== false)
{
$this->message = str_replace('":' . $this->bbcode_uid . ']', '"":' . $this->bbcode_uid . ']', $this->message);
$replaced = true;
}
$this->magic_url(generate_board_url());
// Revert our change above
if ($replaced)
{
$this->message = str_replace('"":' . $this->bbcode_uid . ']', '":' . $this->bbcode_uid . ']', $this->message);
}
if ($config['max_' . $mode . '_urls'])
{
$num_urls += preg_match_all('#\<!-- ([lmwe]) --\>.*?\<!-- \1 --\>#', $this->message, $matches);