mirror of
https://github.com/e107inc/e107.git
synced 2025-08-03 13:17:24 +02:00
BC Fix for comment avatar size. Regexp for "makeClickable" now handles ' ' before URL correctly.
This commit is contained in:
@@ -482,6 +482,8 @@ class comment
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
e107::getParser()->setThumbSize(100,100); // BC FIx. Set a default image size, in case the template doesn't have one.
|
||||||
|
|
||||||
if (vartrue($pref['nested_comments']))
|
if (vartrue($pref['nested_comments']))
|
||||||
{
|
{
|
||||||
// $width2 = 100 - $width;
|
// $width2 = 100 - $width;
|
||||||
|
@@ -1431,7 +1431,7 @@ class e_parse extends e_parser
|
|||||||
$linktext = (!empty($textReplace)) ? $textReplace : '\\2';
|
$linktext = (!empty($textReplace)) ? $textReplace : '\\2';
|
||||||
$external = (!empty($opts['ext'])) ? 'rel="external"' : '';
|
$external = (!empty($opts['ext'])) ? 'rel="external"' : '';
|
||||||
|
|
||||||
$text = preg_replace("#(^|[\s])([\w]+?://(?:[\w-%]+?)(?:\.[\w-%]+?)+.*?)(?=$|[\s[\]<]|\.\s|\.$|,\s|,$)#is", "\\1<a class=\"e-url\" href=\"\\2\" ".$external.">".$linktext."</a>", $text);
|
$text = preg_replace("#(^|[\s]| )([\w]+?:\/\/(?:[\w-%]+?)(?:\.[\w-%]+?)+.*?)(?=$|[\s[\]<]|\.\s|\.$|,\s|,$| )#is", "\\1<a class=\"e-url\" href=\"\\2\" ".$external.">".$linktext."</a>", $text);
|
||||||
$text = preg_replace("#(^|[\s])((?:www|ftp)(?:\.[\w-%]+?){2}.*?)(?=$|[\s[\]<]|\.\s|\.$|,\s|,$)#is", "\\1<a class=\"e-url\" href=\"http://\\2\" ".$external.">".$linktext."</a>", $text);
|
$text = preg_replace("#(^|[\s])((?:www|ftp)(?:\.[\w-%]+?){2}.*?)(?=$|[\s[\]<]|\.\s|\.$|,\s|,$)#is", "\\1<a class=\"e-url\" href=\"http://\\2\" ".$external.">".$linktext."</a>", $text);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user