Fix Deprecated error message
This commit is contained in:
parent
c89129ad20
commit
4dafdda99e
|
@ -2106,7 +2106,8 @@ function text_highlight($s, $lang) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$renderer = new Text_Highlighter_Renderer_Html($options);
|
$renderer = new Text_Highlighter_Renderer_Html($options);
|
||||||
$hl = Text_Highlighter::factory($lang);
|
$factory = new Text_Highlighter();
|
||||||
|
$hl = $factory->factory($lang);
|
||||||
$hl->setRenderer($renderer);
|
$hl->setRenderer($renderer);
|
||||||
$o = $hl->highlight($s);
|
$o = $hl->highlight($s);
|
||||||
$o = str_replace("\n", '', $o);
|
$o = str_replace("\n", '', $o);
|
||||||
|
|
Loading…
Reference in a new issue