Zeile 1038 | Zeile 1038 |
---|
*/ function mycode_parse_img_callback1($matches) {
|
*/ function mycode_parse_img_callback1($matches) {
|
return $this->mycode_parse_img($matches[2])."\n";
| return $this->mycode_parse_img($matches[2]);
|
}
/**
| }
/**
|
Zeile 1172 | Zeile 1172 |
---|
$domain = explode('.', $parsed_url['host']); if($domain[0] != 'screen') {
|
$domain = explode('.', $parsed_url['host']); if($domain[0] != 'screen') {
|
$local = $domain[0].'.';
| $local = htmlspecialchars_uni($domain[0]).'.';
|
} else {
| } else {
|
Zeile 1272 | Zeile 1272 |
---|
*/ function mycode_parse_list_callback($matches) {
|
*/ function mycode_parse_list_callback($matches) {
|
return $this->mycode_parse_list($matches[1])."\n";
| return $this->mycode_parse_list($matches[1]);
|
}
/**
| }
/**
|
Zeile 1283 | Zeile 1283 |
---|
*/ function mycode_parse_list_callback_type($matches) {
|
*/ function mycode_parse_list_callback_type($matches) {
|
return $this->mycode_parse_list($matches[2], $matches[1])."\n";
| return $this->mycode_parse_list($matches[2], $matches[1]);
|
}
/**
| }
/**
|