From: <var...@us...> - 2021-07-28 14:29:23
|
Revision: 10380 http://sourceforge.net/p/phpwiki/code/10380 Author: vargenau Date: 2021-07-28 14:29:15 +0000 (Wed, 28 Jul 2021) Log Message: ----------- function makeActionButton: same prototype as base class Modified Paths: -------------- trunk/themes/MonoBook/themeinfo.php trunk/themes/shamino_com/themeinfo.php trunk/themes/smaller/themeinfo.php Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2021-07-28 14:20:23 UTC (rev 10379) +++ trunk/themes/MonoBook/themeinfo.php 2021-07-28 14:29:15 UTC (rev 10380) @@ -41,7 +41,8 @@ class WikiTheme_MonoBook extends WikiTheme_Wikilens { /* this adds selected to the class */ - function makeActionButton($action, $label = false, $page_or_rev = false, $options = false) + function makeActionButton($action, $label = '', + $page_or_rev = false, $options = array()) { extract($this->_get_name_and_rev($page_or_rev)); Modified: trunk/themes/shamino_com/themeinfo.php =================================================================== --- trunk/themes/shamino_com/themeinfo.php 2021-07-28 14:20:23 UTC (rev 10379) +++ trunk/themes/shamino_com/themeinfo.php 2021-07-28 14:29:15 UTC (rev 10380) @@ -45,7 +45,8 @@ class WikiTheme_shamino_com extends WikiTheme { - function makeActionButton($action, $label = false, $page_or_rev = false) + function makeActionButton($action, $label = '', + $page_or_rev = false, $options = array()) { extract($this->_get_name_and_rev($page_or_rev)); Modified: trunk/themes/smaller/themeinfo.php =================================================================== --- trunk/themes/smaller/themeinfo.php 2021-07-28 14:20:23 UTC (rev 10379) +++ trunk/themes/smaller/themeinfo.php 2021-07-28 14:29:15 UTC (rev 10380) @@ -40,8 +40,8 @@ class WikiTheme_smaller extends WikiTheme { - - function makeActionButton($action, $label = false, $page_or_rev = false) + function makeActionButton($action, $label = '', + $page_or_rev = false, $options = array()) { extract($this->_get_name_and_rev($page_or_rev)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |