From: <var...@us...> - 2010-05-19 09:41:25
|
Revision: 7416 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7416&view=rev Author: vargenau Date: 2010-05-19 09:41:19 +0000 (Wed, 19 May 2010) Log Message: ----------- RIP php-4.0.4pl1 Modified Paths: -------------- trunk/lib/plugin/RecentComments.php trunk/lib/plugin/RelatedChanges.php Modified: trunk/lib/plugin/RecentComments.php =================================================================== --- trunk/lib/plugin/RecentComments.php 2010-05-19 09:05:11 UTC (rev 7415) +++ trunk/lib/plugin/RecentComments.php 2010-05-19 09:41:19 UTC (rev 7416) @@ -41,11 +41,7 @@ } function getDefaultArguments() { - //php-4.0.4pl1 breaks at the parent:: line even if the - // code doesn't reach this line - //if (!check_php_version(4,0,6)) - $args = WikiPlugin_RecentChanges::getDefaultArguments(); - //else $args = parent::getDefaultArguments(); + $args = parent::getDefaultArguments(); $args['show_minor'] = false; $args['show_all'] = true; $args['caption'] = _("Recent Comments"); Modified: trunk/lib/plugin/RelatedChanges.php =================================================================== --- trunk/lib/plugin/RelatedChanges.php 2010-05-19 09:05:11 UTC (rev 7415) +++ trunk/lib/plugin/RelatedChanges.php 2010-05-19 09:41:19 UTC (rev 7416) @@ -50,11 +50,7 @@ } function getDefaultArguments() { - //php-4.0.4pl1 breaks at the parent:: line even if the - // code doesn't reach this line - //if (!check_php_version(4,0,6)) - $args = WikiPlugin_RecentChanges::getDefaultArguments(); - //else $args = parent::getDefaultArguments(); + $args = parent::getDefaultArguments(); $args['page'] = '[pagename]'; $args['show_minor'] = true; $args['show_all'] = true; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |