|
From: <var...@us...> - 2021-08-03 16:12:36
|
Revision: 10416
http://sourceforge.net/p/phpwiki/code/10416
Author: vargenau
Date: 2021-08-03 16:12:35 +0000 (Tue, 03 Aug 2021)
Log Message:
-----------
lib/plugin/WantedPages.php: fix $pagename variable
Modified Paths:
--------------
trunk/lib/plugin/WantedPages.php
Modified: trunk/lib/plugin/WantedPages.php
===================================================================
--- trunk/lib/plugin/WantedPages.php 2021-08-03 15:47:08 UTC (rev 10415)
+++ trunk/lib/plugin/WantedPages.php 2021-08-03 16:12:35 UTC (rev 10416)
@@ -205,7 +205,7 @@
{
$pagename = $page_handle->getName();
$count = count($this->parentobj->_wpagelist[$pagename]);
- return LinkURL(WikiURL($page, array('action' => 'BackLinks')),
+ return LinkURL(WikiURL($pagename, array('action' => 'BackLinks')),
fmt("(%d Links)", $count));
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|