|
From: <var...@us...> - 2016-11-25 11:07:42
|
Revision: 9975
http://sourceforge.net/p/phpwiki/code/9975
Author: vargenau
Date: 2016-11-25 11:07:40 +0000 (Fri, 25 Nov 2016)
Log Message:
-----------
Make "contribs" and "new pages" work in RecentChanges when not in English
Modified Paths:
--------------
trunk/lib/plugin/RecentChanges.php
Modified: trunk/lib/plugin/RecentChanges.php
===================================================================
--- trunk/lib/plugin/RecentChanges.php 2016-11-18 16:23:19 UTC (rev 9974)
+++ trunk/lib/plugin/RecentChanges.php 2016-11-25 11:07:40 UTC (rev 9975)
@@ -228,14 +228,14 @@
$author = $rev->get('author');
if (preg_match("/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/", $author)) return '';
return HTML('(',
- Button(array('action' => _("RecentChanges"),
+ Button(array('action' => __("RecentChanges"),
'format' => 'contribs',
'author' => $author,
'days' => 360),
_("contribs"),
$author),
' | ',
- Button(array('action' => _("RecentChanges"),
+ Button(array('action' => __("RecentChanges"),
'format' => 'contribs',
'owner' => $author,
'days' => 360),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|