Vergleich inc/class_parser.php - 1.8.15 - 1.8.16

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 146Zeile 146
			// This code is reserved and could break codes
$message = str_replace("<mybb-code>\n", "<mybb_code>\n", $message);


			// This code is reserved and could break codes
$message = str_replace("<mybb-code>\n", "<mybb_code>\n", $message);


			preg_match_all("#\[(code|php)\](.*?)\[/\\1\](\r\n?|\n?)#si", $message, $code_matches, PREG_SET_ORDER);
$message = preg_replace("#\[(code|php)\](.*?)\[/\\1\](\r\n?|\n?)#si", "<mybb-code>\n", $message);










			preg_match_all("#\[(code|php)\](.*?)(\[/\\1\])+(\r\n?|\n?)#si", $message, $code_matches, PREG_SET_ORDER);
foreach($code_matches as $point => $part)
{
if(isset($part[3]))
{
$part[1] = "[".$part[1]."]";
$code_matches[$point][2] = substr_replace($part[0], "", strrpos($part[0], $part[3]), strlen($part[3]));
$code_matches[$point][2] = substr_replace($code_matches[$point][2], "", strpos($code_matches[$point][2], $part[1]), strlen($part[1]));
}
}
$message = preg_replace("#\[(code|php)\](.*?)(\[/\\1\])+(\r\n?|\n?)#si", "<mybb-code>\n", $message);

		}

if(empty($this->options['allow_html']))

		}

if(empty($this->options['allow_html']))

		{

		{

			$message = $this->parse_html($message);
$message = str_replace("&lt;mybb-code&gt;\n", "<mybb-code>\n", $message);

			$message = $this->parse_html($message);
$message = str_replace("&lt;mybb-code&gt;\n", "<mybb-code>\n", $message);

		}

		}

		else
{
// Replace base, meta,script and style tags in our post - these are > dangerous <
$message = preg_replace('#<(/?)(base|meta|script|style)([^>]*)>#i', '&lt;$1$2$3&gt;', $message);
$message = $this->fix_javascript($message);

		else
{
// Replace base, meta,script and style tags in our post - these are > dangerous <
$message = preg_replace('#<(/?)(base|meta|script|style)([^>]*)>#i', '&lt;$1$2$3&gt;', $message);
$message = $this->fix_javascript($message);





			$find = array("<br />\n", "<br>\n");
$replace = array("\n", "\n");
$message = str_replace($find, $replace, $message);

			$find = array("<br />\n", "<br>\n");
$replace = array("\n", "\n");
$message = str_replace($find, $replace, $message);

Zeile 172Zeile 181
		if(!empty($this->options['me_username']) && $mybb->settings['allowmemycode'] == 1)
{
global $lang;

		if(!empty($this->options['me_username']) && $mybb->settings['allowmemycode'] == 1)
{
global $lang;





			$message = preg_replace('#(>|^|\r|\n)/me ([^\r\n<]*)#i', "\\1<span style=\"color: red;\" class=\"mycode_me\">* {$this->options['me_username']} \\2</span>", $message);
$message = preg_replace('#(>|^|\r|\n)/slap ([^\r\n<]*)#i', "\\1<span style=\"color: red;\" class=\"mycode_slap\">* {$this->options['me_username']} {$lang->slaps} \\2 {$lang->with_trout}</span>", $message);

			$message = preg_replace('#(>|^|\r|\n)/me ([^\r\n<]*)#i', "\\1<span style=\"color: red;\" class=\"mycode_me\">* {$this->options['me_username']} \\2</span>", $message);
$message = preg_replace('#(>|^|\r|\n)/slap ([^\r\n<]*)#i', "\\1<span style=\"color: red;\" class=\"mycode_slap\">* {$this->options['me_username']} {$lang->slaps} \\2 {$lang->with_trout}</span>", $message);

		}

$message = $plugins->run_hooks("parse_message_me_mycode", $message);


		}

$message = $plugins->run_hooks("parse_message_me_mycode", $message);


		// If we can, parse smilies
if(!empty($this->options['allow_smilies']))
{
$message = $this->parse_smilies($message, $this->options['allow_html']);

		// If we can, parse smilies
if(!empty($this->options['allow_smilies']))
{
$message = $this->parse_smilies($message, $this->options['allow_html']);

		}


		}


		// Replace MyCode if requested.
if(!empty($this->options['allow_mycode']))
{
$message = $this->parse_mycode($message);

		// Replace MyCode if requested.
if(!empty($this->options['allow_mycode']))
{
$message = $this->parse_mycode($message);

 
		}

// Filter url codes, if disabled.
if($mybb->settings['allowlinkmycode'] != 1)
{
$message = preg_replace("#\[(\/)?url{1}(.*?)\]#i", "", $message);

		}

// Parse Highlights

		}

// Parse Highlights

Zeile 221Zeile 236
					$message = preg_replace("#\<mybb-code>\n?#", $code, $message, 1);
}
}

					$message = preg_replace("#\<mybb-code>\n?#", $code, $message, 1);
}
}

		}


		}


		if(!isset($this->options['nl2br']) || $this->options['nl2br'] != 0)
{
$message = nl2br($message);

		if(!isset($this->options['nl2br']) || $this->options['nl2br'] != 0)
{
$message = nl2br($message);

Zeile 272Zeile 287
		{
$standard_mycode['b']['regex'] = "#\[b\](.*?)\[/b\]#si";
$standard_mycode['b']['replacement'] = "<span style=\"font-weight: bold;\" class=\"mycode_b\">$1</span>";

		{
$standard_mycode['b']['regex'] = "#\[b\](.*?)\[/b\]#si";
$standard_mycode['b']['replacement'] = "<span style=\"font-weight: bold;\" class=\"mycode_b\">$1</span>";





			$standard_mycode['u']['regex'] = "#\[u\](.*?)\[/u\]#si";
$standard_mycode['u']['replacement'] = "<span style=\"text-decoration: underline;\" class=\"mycode_u\">$1</span>";


			$standard_mycode['u']['regex'] = "#\[u\](.*?)\[/u\]#si";
$standard_mycode['u']['replacement'] = "<span style=\"text-decoration: underline;\" class=\"mycode_u\">$1</span>";


Zeile 345Zeile 360

$callback_mycode['size_int']['regex'] = "#\[size=([0-9\+\-]+?)\](.*?)\[/size\]#si";
$callback_mycode['size_int']['replacement'] = array($this, 'mycode_handle_size_callback');


$callback_mycode['size_int']['regex'] = "#\[size=([0-9\+\-]+?)\](.*?)\[/size\]#si";
$callback_mycode['size_int']['replacement'] = array($this, 'mycode_handle_size_callback');


++$nestable_count;


++$nestable_count;

			++$callback_count;

			++$callback_count;

		}


		}


		if($mybb->settings['allowfontmycode'] == 1)
{
$nestable_mycode['font']['regex'] = "#\[font=([a-z0-9 ,\-_'\"]+)\](.*?)\[/font\]#si";
$nestable_mycode['font']['replacement'] = "<span style=\"font-family: $1;\" class=\"mycode_font\">$2</span>";

		if($mybb->settings['allowfontmycode'] == 1)
{
$nestable_mycode['font']['regex'] = "#\[font=([a-z0-9 ,\-_'\"]+)\](.*?)\[/font\]#si";
$nestable_mycode['font']['replacement'] = "<span style=\"font-family: $1;\" class=\"mycode_font\">$2</span>";


++$nestable_count;
}


++$nestable_count;
}


if($mybb->settings['allowalignmycode'] == 1)
{


if($mybb->settings['allowalignmycode'] == 1)
{

Zeile 364Zeile 379
			$nestable_mycode['align']['replacement'] = "<div style=\"text-align: $1;\" class=\"mycode_align\">$2</div>";

++$nestable_count;

			$nestable_mycode['align']['replacement'] = "<div style=\"text-align: $1;\" class=\"mycode_align\">$2</div>";

++$nestable_count;

		}

$custom_mycode = $cache->read("mycode");

		}

$custom_mycode = $cache->read("mycode");


// If there is custom MyCode, load it.
if(is_array($custom_mycode))


// If there is custom MyCode, load it.
if(is_array($custom_mycode))

Zeile 450Zeile 465
			$message = preg_replace_callback("#\[img=([1-9][0-9]*)x([1-9][0-9]*) align=(left|right)\](\r\n?|\n?)(https?://([^<>\"']+?))\[/img\]#is", array($this, 'mycode_parse_img_disabled_callback4'), $message);
}


			$message = preg_replace_callback("#\[img=([1-9][0-9]*)x([1-9][0-9]*) align=(left|right)\](\r\n?|\n?)(https?://([^<>\"']+?))\[/img\]#is", array($this, 'mycode_parse_img_disabled_callback4'), $message);
}


		$message = $this->mycode_auto_url($message);









		// Convert videos when allow.
if(!empty($this->options['allow_videocode']))
{
$message = preg_replace_callback("#\[video=(.*?)\](.*?)\[/video\]#i", array($this, 'mycode_parse_video_callback'), $message);
}
else
{
$message = preg_replace_callback("#\[video=(.*?)\](.*?)\[/video\]#i", array($this, 'mycode_parse_video_disabled_callback'), $message);
}


$message = str_replace('$', '&#36;', $message);

// Replace the rest
if($this->mycode_cache['standard_count'] > 0)


$message = str_replace('$', '&#36;', $message);

// Replace the rest
if($this->mycode_cache['standard_count'] > 0)

		{

		{

			$message = preg_replace($this->mycode_cache['standard']['find'], $this->mycode_cache['standard']['replacement'], $message);
}


			$message = preg_replace($this->mycode_cache['standard']['find'], $this->mycode_cache['standard']['replacement'], $message);
}


Zeile 465Zeile 488
			foreach($this->mycode_cache['callback'] as $replace)
{
$message = preg_replace_callback($replace['find'], $replace['replacement'], $message);

			foreach($this->mycode_cache['callback'] as $replace)
{
$message = preg_replace_callback($replace['find'], $replace['replacement'], $message);

			}
}

			}
}


// Replace the nestable mycode's
if($this->mycode_cache['nestable_count'] > 0)


// Replace the nestable mycode's
if($this->mycode_cache['nestable_count'] > 0)

Zeile 497Zeile 520
			}
}


			}
}


		// Convert videos when allow.
if(!empty($this->options['allow_videocode']))
{
$message = preg_replace_callback("#\[video=(.*?)\](.*?)\[/video\]#i", array($this, 'mycode_parse_video_callback'), $message);
}
else
{
$message = preg_replace_callback("#\[video=(.*?)\](.*?)\[/video\]#i", array($this, 'mycode_parse_video_disabled_callback'), $message);
}

		$message = $this->mycode_auto_url($message);










return $message;
}


return $message;
}

Zeile 635Zeile 650
					$badword['replacement'] = "*****";
}


					$badword['replacement'] = "*****";
}


				// Take into account the position offset for our last replacement.
$badword['badword'] = str_replace('\*', '([a-zA-Z0-9_]{1})', preg_quote($badword['badword'], "#"));







				if($badword['regex'])
{
$message = preg_replace('#'.$badword['badword'].'#is', $badword['replacement'], $message);
}
else
{
// Take into account the position offset for our last replacement.
$badword['badword'] = str_replace('\*', '([a-zA-Z0-9_\*]{1})', preg_quote($badword['badword'], "#"));





				// Ensure we run the replacement enough times but not recursively (i.e. not while(preg_match..))
$message = preg_replace("#(^|\W)".$badword['badword']."(?=\W|$)#i", '\1'.$badword['replacement'], $message);


					// Ensure we run the replacement enough times but not recursively (i.e. not while(preg_match..))
$message = preg_replace("#(^|\W)".$badword['badword']."(?=\W|$)#i", '\1'.$badword['replacement'], $message);
}

			}
}
if(!empty($this->options['strip_tags']))

			}
}
if(!empty($this->options['strip_tags']))

Zeile 944Zeile 966
	* @return string The parsed message.
*/
function mycode_parse_php($str, $bare_return = false, $text_only = false)

	* @return string The parsed message.
*/
function mycode_parse_php($str, $bare_return = false, $text_only = false)

	{
global $lang, $templates;

	{
global $lang, $templates;


if($text_only == true)
{


if($text_only == true)
{

Zeile 1017Zeile 1039

/**
* Parses PHP code MyCode.


/**
* Parses PHP code MyCode.

	*
* @param array $matches Matches.

	*
* @param array $matches Matches.

	* @return string The parsed message.
*/
function mycode_parse_php_callback($matches)

	* @return string The parsed message.
*/
function mycode_parse_php_callback($matches)

	{

	{

		return $this->mycode_parse_php($matches[1], false, true);
}

		return $this->mycode_parse_php($matches[1], false, true);
}





	/**
* Parses URL MyCode.
*

	/**
* Parses URL MyCode.
*

Zeile 1039Zeile 1061
		if(!preg_match("#^[a-z0-9]+://#i", $url))
{
$url = "http://".$url;

		if(!preg_match("#^[a-z0-9]+://#i", $url))
{
$url = "http://".$url;

		}

if(!empty($this->options['allow_html']))
{

		}

if(!empty($this->options['allow_html']))
{

			$url = $this->parse_html($url);
}


			$url = $this->parse_html($url);
}


Zeile 1071Zeile 1093
		}

// Fix some entities in URLs

		}

// Fix some entities in URLs

		$entities = array('$' => '%24', '&#36;' => '%24', '^' => '%5E', '`' => '%60', '[' => '%5B', ']' => '%5D', '{' => '%7B', '}' => '%7D', '"' => '%22', '<' => '%3C', '>' => '%3E', ' ' => '%20');
$url = str_replace(array_keys($entities), array_values($entities), $url);


		$url = $this->encode_url($url);



		$name = preg_replace("#&amp;\#([0-9]+);#si", "&#$1;", $name); // Fix & but allow unicode

eval("\$mycode_url = \"".$templates->get("mycode_url", 1, 0)."\";");

		$name = preg_replace("#&amp;\#([0-9]+);#si", "&#$1;", $name); // Fix & but allow unicode

eval("\$mycode_url = \"".$templates->get("mycode_url", 1, 0)."\";");

Zeile 1093Zeile 1115
			$matches[3] = '';
}
return $this->mycode_parse_url($matches[1].$matches[2], $matches[3]);

			$matches[3] = '';
}
return $this->mycode_parse_url($matches[1].$matches[2], $matches[3]);

	}

	}


/**
* Parses URL MyCode.


/**
* Parses URL MyCode.

Zeile 1143Zeile 1165
		if($align)
{
$this->clear_needed = true;

		if($align)
{
$this->clear_needed = true;

		}


		}


		$alt = basename($url);
$alt = htmlspecialchars_decode($alt);
if(my_strlen($alt) > 55)

		$alt = basename($url);
$alt = htmlspecialchars_decode($alt);
if(my_strlen($alt) > 55)

		{

		{

			$alt = my_substr($alt, 0, 40).'...'.my_substr($alt, -10);

			$alt = my_substr($alt, 0, 40).'...'.my_substr($alt, -10);

		}

		}

		$alt = htmlspecialchars_uni($alt);

$alt = $lang->sprintf($lang->posted_image, $alt);

		$alt = htmlspecialchars_uni($alt);

$alt = $lang->sprintf($lang->posted_image, $alt);

Zeile 1160Zeile 1182
			$width = " width=\"{$dimensions[0]}\"";
$height = " height=\"{$dimensions[1]}\"";
}

			$width = " width=\"{$dimensions[0]}\"";
$height = " height=\"{$dimensions[1]}\"";
}

 

$url = $this->encode_url($url);


eval("\$mycode_img = \"".$templates->get("mycode_img", 1, 0)."\";");
return $mycode_img;


eval("\$mycode_img = \"".$templates->get("mycode_img", 1, 0)."\";");
return $mycode_img;

	}

/**
* Parses IMG MyCode.
*
* @param array $matches Matches.
* @return string Image code.

	}

/**
* Parses IMG MyCode.
*
* @param array $matches Matches.
* @return string Image code.

	 */
function mycode_parse_img_callback1($matches)
{
return $this->mycode_parse_img($matches[2]);

	 */
function mycode_parse_img_callback1($matches)
{
return $this->mycode_parse_img($matches[2]);

	}

/**
* Parses IMG MyCode.
*
* @param array $matches Matches.

	}

/**
* Parses IMG MyCode.
*
* @param array $matches Matches.

	 * @return string Image code.
*/
function mycode_parse_img_callback2($matches)

	 * @return string Image code.
*/
function mycode_parse_img_callback2($matches)

Zeile 1194Zeile 1218
	 * @return string Image code.
*/
function mycode_parse_img_callback3($matches)

	 * @return string Image code.
*/
function mycode_parse_img_callback3($matches)

	{

	{

		return $this->mycode_parse_img($matches[3], array(), $matches[1]);
}


		return $this->mycode_parse_img($matches[3], array(), $matches[1]);
}


Zeile 1236Zeile 1260
	function mycode_parse_img_disabled_callback1($matches)
{
return $this->mycode_parse_img_disabled($matches[2]);

	function mycode_parse_img_disabled_callback1($matches)
{
return $this->mycode_parse_img_disabled($matches[2]);

	}

/**
* Parses IMG MyCode disabled.
*
* @param array $matches Matches.
* @return string Image code.
*/

	}

/**
* Parses IMG MyCode disabled.
*
* @param array $matches Matches.
* @return string Image code.
*/

	function mycode_parse_img_disabled_callback2($matches)
{
return $this->mycode_parse_img_disabled($matches[4]);

	function mycode_parse_img_disabled_callback2($matches)
{
return $this->mycode_parse_img_disabled($matches[4]);

Zeile 1293Zeile 1317
		elseif(preg_match("/^([a-zA-Z0-9-_\+\.]+?)@[a-zA-Z0-9-]+\.[a-zA-Z0-9\.-]+\?(.*?)$/si", $email))
{
$email = htmlspecialchars_uni($email);

		elseif(preg_match("/^([a-zA-Z0-9-_\+\.]+?)@[a-zA-Z0-9-]+\.[a-zA-Z0-9\.-]+\?(.*?)$/si", $email))
{
$email = htmlspecialchars_uni($email);

		}

		}


eval("\$mycode_email = \"".$templates->get("mycode_email", 1, 0)."\";");
return $mycode_email;


eval("\$mycode_email = \"".$templates->get("mycode_email", 1, 0)."\";");
return $mycode_email;

Zeile 1329Zeile 1353
		{
return "[video={$video}]{$url}[/video]";
}

		{
return "[video={$video}]{$url}[/video]";
}

 

// Check URL is a valid URL first, as `parse_url` doesn't check validity.
if(false === filter_var($url, FILTER_VALIDATE_URL))
{
return "[video={$video}]{$url}[/video]";
}


$parsed_url = @parse_url(urldecode($url));


$parsed_url = @parse_url(urldecode($url));

		if($parsed_url == false)

		if($parsed_url === false)

		{
return "[video={$video}]{$url}[/video]";

		{
return "[video={$video}]{$url}[/video]";

		}


		}


		$fragments = array();
if($parsed_url['fragment'])
{
$fragments = explode("&", $parsed_url['fragment']);

		$fragments = array();
if($parsed_url['fragment'])
{
$fragments = explode("&", $parsed_url['fragment']);

		}

$queries = explode("&", $parsed_url['query']);


		}

$queries = explode("&", $parsed_url['query']);


		$input = array();
foreach($queries as $query)
{

		$input = array();
foreach($queries as $query)
{

Zeile 1357Zeile 1387
		switch($video)
{
case "dailymotion":

		switch($video)
{
case "dailymotion":

				list($id) = explode('_', $path[2], 2); // http://www.dailymotion.com/video/fds123_title-goes-here








				if(isset($path[2]))
{
list($id) = explode('_', $path[2], 2); // http://www.dailymotion.com/video/fds123_title-goes-here
}
else
{
$id = $path[1]; // http://dai.ly/fds123
}

				break;
case "metacafe":
$id = $path[2]; // http://www.metacafe.com/watch/fds123/title_goes_here/

				break;
case "metacafe":
$id = $path[2]; // http://www.metacafe.com/watch/fds123/title_goes_here/

Zeile 1410Zeile 1447
				if(isset($path[3]))
{
$id = $path[3]; // http://vimeo.com/fds/fds/fds123

				if(isset($path[3]))
{
$id = $path[3]; // http://vimeo.com/fds/fds/fds123

				}
else
{

				}
else
{

					$id = $path[1]; // http://vimeo.com/fds123
}
break;

					$id = $path[1]; // http://vimeo.com/fds123
}
break;

Zeile 1454Zeile 1491
		if(empty($id))
{
return "[video={$video}]{$url}[/video]";

		if(empty($id))
{
return "[video={$video}]{$url}[/video]";

		}

$id = htmlspecialchars_uni($id);


		}

$id = htmlspecialchars_uni($id);


		eval("\$video_code = \"".$templates->get("video_{$video}_embed")."\";");
return $video_code;
}

		eval("\$video_code = \"".$templates->get("video_{$video}_embed")."\";");
return $video_code;
}

Zeile 1500Zeile 1537
	function mycode_parse_video_disabled_callback($matches)
{
return $this->mycode_parse_video_disabled($matches[2]);

	function mycode_parse_video_disabled_callback($matches)
{
return $this->mycode_parse_video_disabled($matches[2]);

	}

/**

	}

/**

	* Parses URLs automatically.
*
* @param string $message The message to be parsed

	* Parses URLs automatically.
*
* @param string $message The message to be parsed

Zeile 1511Zeile 1548
	function mycode_auto_url($message)
{
$message = " ".$message;

	function mycode_auto_url($message)
{
$message = " ".$message;

 


		// Links should end with slashes, numbers, characters and braces but not with dots, commas or question marks

		// Links should end with slashes, numbers, characters and braces but not with dots, commas or question marks

		$message = preg_replace_callback("#([\>\s\(\)\[]|(?:\[(?!url)(?:.*?)\]))(http|https|ftp|news|irc|ircs|irc6){1}://([^\/\"\s\<\[\.]+\.([^\/\"\s\<\[\.]+\.)*[\w]+(:[0-9]+)?(/([^\"\s<\[]|\[\])*)?([\w\/\)]))#iu", array($this, 'mycode_auto_url_callback'), $message);
$message = preg_replace_callback("#([\>\s\(\)\[]|(?:\[(?!url)(?:.*?)\]))(www|ftp)\.(([^\/\"\s\<\[\.]+\.)*[\w]+(:[0-9]+)?(/([^\"\s<\[]|\[\])*)?([\w\/\)]))#iu", array($this, 'mycode_auto_url_callback'), $message);


		// Don't create links within existing links (handled up-front in the callback function).
$message = preg_replace_callback("#<a\\s[^>]*>.*?</a>|([\s\(\)\[\>])(http|https|ftp|news|irc|ircs|irc6){1}://([^\/\"\s\<\[\.]+\.([^\/\"\s\<\[\.]+\.)*[\w]+(:[0-9]+)?(/([^\"\s<\[]|\[\])*)?([\w\/\)]))#ius", array($this, 'mycode_auto_url_callback'), $message);
$message = preg_replace_callback("#<a\\s[^>]*>.*?</a>|([\s\(\)\[\>])(www|ftp)\.(([^\/\"\s\<\[\.]+\.)*[\w]+(:[0-9]+)?(/([^\"\s<\[]|\[\])*)?([\w\/\)]))#ius", array($this, 'mycode_auto_url_callback'), $message);

		$message = my_substr($message, 1);

		$message = my_substr($message, 1);





		return $message;
}

		return $message;
}





	/**
* Parses URLs automatically.
*

	/**
* Parses URLs automatically.
*

Zeile 1527Zeile 1566
	*/
function mycode_auto_url_callback($matches)
{

	*/
function mycode_auto_url_callback($matches)
{

 
		// If we matched a preexisting link (the part of the regexes in mycode_auto_url() before the pipe symbol),
// then simply return it - we don't create links within existing links.
if(count($matches) == 1)
{
return $matches[0];
}


		$external = '';
// Allow links like http://en.wikipedia.org/wiki/PHP_(disambiguation) but detect mismatching braces
while(my_substr($matches[3], -1) == ')')

		$external = '';
// Allow links like http://en.wikipedia.org/wiki/PHP_(disambiguation) but detect mismatching braces
while(my_substr($matches[3], -1) == ')')

Zeile 1552Zeile 1598
		}
if(in_array(strtolower($matches[2]), array('www', 'ftp')))
{

		}
if(in_array(strtolower($matches[2]), array('www', 'ftp')))
{

			return "{$matches[1]}[url]{$matches[2]}.{$matches[3]}[/url]{$external}";

			$url = "{$matches[2]}.{$matches[3]}";

		}
else
{

		}
else
{

			return "{$matches[1]}[url]{$matches[2]}://{$matches[3]}[/url]{$external}";

			$url = "{$matches[2]}://{$matches[3]}";

		}

		}

 

return $matches[1].$this->mycode_parse_url($url, $url).$external;

	}

/**

	}

/**

Zeile 1575Zeile 1623
			$message = "[*]{$message}";
}


			$message = "[*]{$message}";
}


		$message = preg_replace("#[^\S\n\r]*\[\*\]\s*#", "</li>\n<li>", $message);
$message .= "</li>";





		$message = preg_split("#[^\S\n\r]*\[\*\]\s*#", $message);
if(isset($message[0]) && trim($message[0]) == '')
{
array_shift($message);
}
$message = '<li>'.implode("</li>\n<li>", $message)."</li>\n";


if($type)
{
$list = "\n<ol type=\"$type\" class=\"mycode_list\">$message</ol>\n";


if($type)
{
$list = "\n<ol type=\"$type\" class=\"mycode_list\">$message</ol>\n";

		}
else
{

		}
else
{

			$list = "<ul class=\"mycode_list\">$message</ul>\n";
}
$list = preg_replace("#<(ol type=\"$type\"|ul)>\s*</li>#", "<$1>", $list);

			$list = "<ul class=\"mycode_list\">$message</ul>\n";
}
$list = preg_replace("#<(ol type=\"$type\"|ul)>\s*</li>#", "<$1>", $list);

Zeile 1630Zeile 1682
			if(!empty($matches[2]))
{
return "[list{$matches[2]}&{$this->list_count}]";

			if(!empty($matches[2]))
{
return "[list{$matches[2]}&{$this->list_count}]";

			}

			}

			else
{
return "[list&{$this->list_count}]";

			else
{
return "[list&{$this->list_count}]";

Zeile 1653Zeile 1705
		if(is_array($this->smilies_cache))
{
$message = str_replace($this->smilies_cache, array_keys($this->smilies_cache), $message);

		if(is_array($this->smilies_cache))
{
$message = str_replace($this->smilies_cache, array_keys($this->smilies_cache), $message);

		}
return $message;
}

		}
return $message;
}


/**
* Highlights a string


/**
* Highlights a string

Zeile 1674Zeile 1726
		if(is_array($this->highlight_cache) && !empty($this->highlight_cache))
{
$message = preg_replace(array_keys($this->highlight_cache), $this->highlight_cache, $message);

		if(is_array($this->highlight_cache) && !empty($this->highlight_cache))
{
$message = preg_replace(array_keys($this->highlight_cache), $this->highlight_cache, $message);

		}

return $message;
}

		}

return $message;
}


/**
* Parses message to plain text equivalents of MyCode.


/**
* Parses message to plain text equivalents of MyCode.

Zeile 1689Zeile 1741
	function text_parse_message($message, $options=array())
{
global $plugins;

	function text_parse_message($message, $options=array())
{
global $plugins;





		if(empty($this->options))
{
$this->options = $options;

		if(empty($this->options))
{
$this->options = $options;

Zeile 1699Zeile 1751
		if(!empty($this->options['filter_badwords']))
{
$message = $this->parse_badwords($message);

		if(!empty($this->options['filter_badwords']))
{
$message = $this->parse_badwords($message);

		}


		}


		// Parse quotes first
$message = $this->mycode_parse_quotes($message, true);

		// Parse quotes first
$message = $this->mycode_parse_quotes($message, true);





		$message = preg_replace_callback("#\[php\](.*?)\[/php\](\r\n?|\n?)#is", array($this, 'mycode_parse_php_callback'), $message);
$message = preg_replace_callback("#\[code\](.*?)\[/code\](\r\n?|\n?)#is", array($this, 'mycode_parse_code_callback'), $message);

$find = array(
"#\[(b|u|i|s|url|email|color|img)\](.*?)\[/\\1\]#is",

		$message = preg_replace_callback("#\[php\](.*?)\[/php\](\r\n?|\n?)#is", array($this, 'mycode_parse_php_callback'), $message);
$message = preg_replace_callback("#\[code\](.*?)\[/code\](\r\n?|\n?)#is", array($this, 'mycode_parse_code_callback'), $message);

$find = array(
"#\[(b|u|i|s|url|email|color|img)\](.*?)\[/\\1\]#is",

 
			"#\[(email|color|size|font|align|video)=[^]]*\](.*?)\[/\\1\]#is",

			"#\[img=([1-9][0-9]*)x([1-9][0-9]*)\](\r\n?|\n?)(https?://([^<>\"']+?))\[/img\]#is",
"#\[url=((?!javascript)[a-z]+?://)([^\r\n\"<]+?)\](.+?)\[/url\]#si",
"#\[url=((?!javascript:)[^\r\n\"<&\(\)]+?)\](.+?)\[/url\]#si",

			"#\[img=([1-9][0-9]*)x([1-9][0-9]*)\](\r\n?|\n?)(https?://([^<>\"']+?))\[/img\]#is",
"#\[url=((?!javascript)[a-z]+?://)([^\r\n\"<]+?)\](.+?)\[/url\]#si",
"#\[url=((?!javascript:)[^\r\n\"<&\(\)]+?)\](.+?)\[/url\]#si",

		);

		);


$replace = array(


$replace = array(

 
			"$2",

			"$2",
"$4",
"$3 ($1$2)",
"$2 ($1)",
);

			"$2",
"$4",
"$3 ($1$2)",
"$2 ($1)",
);

		$message = preg_replace($find, $replace, $message);








		
$messageBefore = "";
// The counter limit for this "for" loop is for defensive programming purpose only. It protects against infinite repetition.
for($cnt = 1; $cnt < 20 && $message != $messageBefore; $cnt++)
{
$messageBefore = $message;
$message = preg_replace($find, $replace, $messageBefore);
}


// Replace "me" code and slaps if we have a username
if(!empty($this->options['me_username']))


// Replace "me" code and slaps if we have a username
if(!empty($this->options['me_username']))

Zeile 1749Zeile 1810
		$message = $plugins->run_hooks("text_parse_message", $message);

return $message;

		$message = $plugins->run_hooks("text_parse_message", $message);

return $message;

 
	}

/**
* Replaces certain characters with their entities in a URL.
*
* @param string $url The URL to be escaped.
* @return string The escaped URL.
*/
function encode_url($url)
{
$entities = array('$' => '%24', '&#36;' => '%24', '^' => '%5E', '`' => '%60', '[' => '%5B', ']' => '%5D', '{' => '%7B', '}' => '%7D', '"' => '%22', '<' => '%3C', '>' => '%3E', ' ' => '%20');

$url = str_replace(array_keys($entities), array_values($entities), $url);

return $url;

	}
}

	}
}