Zeile 1434 | Zeile 1434 |
---|
$name = $url; }
|
$name = $url; }
|
$link = "<a href=\"{$url}\" target=\"_blank\">{$name}</a>";
| $link = "<a href=\"".urlencode($url)."\" target=\"_blank\">{$name}</a>";
|
$video = $lang->sprintf($lang->posted_video, $link); return $video; }
| $video = $lang->sprintf($lang->posted_video, $link); return $video; }
|
Zeile 1558 | Zeile 1558 |
---|
function mycode_prepare_list($matches) { // Append number to identify matching list tags
|
function mycode_prepare_list($matches) { // Append number to identify matching list tags
|
if($matches[1] == '[/list]')
| if(strcasecmp($matches[1], '[/list]') == 0)
|
{ $count = array_pop($this->list_elements); if($count !== NULL)
| { $count = array_pop($this->list_elements); if($count !== NULL)
|