anonymous added on 2019-05-08 13:22:22:
Manlink review to match most recent dokuwiki syntax
--- ./syntax.php 2019-05-08 15:18:58.185175000 +0200
+++ new/syntax.php 2019-05-08 15:20:20.579380000 +0200
@@ -20,7 +20,7 @@
'plugin_manlink');
}
- function handle($match, $state, $pos, &$handler) {
+ function handle($match, $state, $pos, Doku_Handler $handler){
if ($state != DOKU_LEXER_SPECIAL)
return false;
@@ -46,7 +46,7 @@
return true;
}
- function render($mode, &$renderer, $data) {
+ function render($format, Doku_Renderer $renderer, $data) {
return true;
}
}
|