From: Paul H. <he...@ma...> - 2004-07-17 03:37:07
|
First the bug. Got an error when using PluginManager with the IncludeSiteMap plugin, when listed. Fixed: --- /home/clyde/soft/phpwiki-1.3.10/lib/plugin/IncludeSiteMap.php 2004-03-09 07:26:20.000000000 -0500 +++ IncludeSiteMap.php 2004-07-16 23:22:29.000000000 -0400 @@ -53,8 +53,8 @@ } function getDescription () { - return sprintf(_("Include recursively all linked pages starting at %s"), - $this->_pagename); + return sprintf(_("Include recursively all linked pages starting at %s."), + '[pagename]'); } function getDefaultArguments() { return array('exclude' => '', Then the cosmetic change. Changed use of ' ' in LikePages for consistency with other descriptions, also using PluginManager: --- /home/clyde/soft/phpwiki-1.3.10/lib/plugin/LikePages.php 2004-02-17 07:11:36.000000000 -0500 +++ LikePages.php 2004-07-15 23:10:08.000000000 -0400 @@ -33,7 +33,7 @@ } function getDescription() { - return sprintf(_("List page names which share an initial or final title word with '%s'."), + return sprintf(_("List page names which share an initial or final title word with %s."), '[pagename]'); } |