|
From: <var...@us...> - 2013-02-06 09:56:08
|
Revision: 8726
http://sourceforge.net/p/phpwiki/code/8726
Author: vargenau
Date: 2013-02-06 09:56:05 +0000 (Wed, 06 Feb 2013)
Log Message:
-----------
Fix rss_icon, rss2_icon and pageLink arguments
Modified Paths:
--------------
trunk/lib/plugin/RecentChanges.php
Modified: trunk/lib/plugin/RecentChanges.php
===================================================================
--- trunk/lib/plugin/RecentChanges.php 2013-02-06 09:55:23 UTC (rev 8725)
+++ trunk/lib/plugin/RecentChanges.php 2013-02-06 09:56:05 UTC (rev 8726)
@@ -642,12 +642,12 @@
class _RecentChanges_SideBarFormatter
extends _RecentChanges_HtmlFormatter
{
- function rss_icon()
+ function rss_icon($args = array())
{
//omit rssicon
}
- function rss2_icon()
+ function rss2_icon($args = array())
{
}
@@ -703,7 +703,7 @@
return $linkurl;
}
- function pageLink($rev)
+ function pageLink($rev, $link_text = false)
{
$linkurl = parent::pageLink($rev);
$linkurl->setAttr('target', '_content');
@@ -766,11 +766,11 @@
class _RecentChanges_BoxFormatter
extends _RecentChanges_HtmlFormatter
{
- function rss_icon()
+ function rss_icon($args = array())
{
}
- function rss2_icon()
+ function rss2_icon($args = array())
{
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|