Revision: 9325
http://sourceforge.net/p/phpwiki/code/9325
Author: vargenau
Date: 2014-11-17 16:23:34 +0000 (Mon, 17 Nov 2014)
Log Message:
-----------
Use default value
Modified Paths:
--------------
trunk/lib/plugin/PopularTags.php
Modified: trunk/lib/plugin/PopularTags.php
===================================================================
--- trunk/lib/plugin/PopularTags.php 2014-11-17 16:22:48 UTC (rev 9324)
+++ trunk/lib/plugin/PopularTags.php 2014-11-17 16:23:34 UTC (rev 9325)
@@ -63,12 +63,12 @@
extract($args);
$maincat = $dbi->getPage(_("CategoryCategory"));
- $bi = $maincat->getBackLinks(false);
+ $bi = $maincat->getBackLinks();
$bl = array();
while ($b = $bi->next()) {
$name = $b->getName();
if (preg_match("/^" . _("Template") . "/", $name)) continue;
- $pages = $b->getBackLinks(false);
+ $pages = $b->getBackLinks();
$bl[] = array('name' => $name,
'count' => $pages->count());
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|