Commit: b57ed02dc53405fdffea72be28e213de2e771b8e Author: Niklas Keller <[email protected]> Sun, 21 Jan 2018 11:49:19 +0100 Parents: 5f359399895def1d979e6337d8f9482218783829 Branches: master
Link: http://git.php.net/?p=web/wiki.git;a=commitdiff;h=b57ed02dc53405fdffea72be28e213de2e771b8e Log: Fix another incompatible method signature Changed paths: M dokuwiki/lib/plugins/doodle/syntax.php Diff: diff --git a/dokuwiki/lib/plugins/doodle/syntax.php b/dokuwiki/lib/plugins/doodle/syntax.php index 39b1f84..7b338e2 100755 --- a/dokuwiki/lib/plugins/doodle/syntax.php +++ b/dokuwiki/lib/plugins/doodle/syntax.php @@ -193,7 +193,7 @@ class syntax_plugin_doodle extends DokuWiki_Syntax_Plugin * add new vote if user just submitted one and * create output xHTML from template */ - function render($mode, &$renderer, $data) { + function render($mode, Doku_Renderer $renderer, $data) { if ($mode != 'xhtml') return false; //debout("render: $mode"); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
