From: <var...@us...> - 2021-02-22 18:28:37
|
Revision: 10256 http://sourceforge.net/p/phpwiki/code/10256 Author: vargenau Date: 2021-02-22 18:28:34 +0000 (Mon, 22 Feb 2021) Log Message: ----------- include_self and noheader are false Modified Paths: -------------- trunk/lib/plugin/IncludeSiteMap.php trunk/lib/plugin/IncludeTree.php trunk/lib/plugin/SiteMap.php Modified: trunk/lib/plugin/IncludeSiteMap.php =================================================================== --- trunk/lib/plugin/IncludeSiteMap.php 2021-02-22 18:20:51 UTC (rev 10255) +++ trunk/lib/plugin/IncludeSiteMap.php 2021-02-22 18:28:34 UTC (rev 10256) @@ -58,8 +58,8 @@ function getDefaultArguments() { return array('exclude' => '', - 'include_self' => 0, - 'noheader' => 0, + 'include_self' => false, + 'noheader' => false, 'page' => '[pagename]', 'description' => $this->getDescription(), 'reclimit' => 2, Modified: trunk/lib/plugin/IncludeTree.php =================================================================== --- trunk/lib/plugin/IncludeTree.php 2021-02-22 18:20:51 UTC (rev 10255) +++ trunk/lib/plugin/IncludeTree.php 2021-02-22 18:28:34 UTC (rev 10256) @@ -45,8 +45,8 @@ function getDefaultArguments() { return array('exclude' => '', - 'include_self' => 0, - 'noheader' => 0, + 'include_self' => false, + 'noheader' => false, 'page' => '[pagename]', 'description' => $this->getDescription(), 'reclimit' => 2, Modified: trunk/lib/plugin/SiteMap.php =================================================================== --- trunk/lib/plugin/SiteMap.php 2021-02-22 18:20:51 UTC (rev 10255) +++ trunk/lib/plugin/SiteMap.php 2021-02-22 18:28:34 UTC (rev 10256) @@ -63,8 +63,8 @@ function getDefaultArguments() { return array('exclude' => '', - 'include_self' => 0, - 'noheader' => 0, + 'include_self' => false, + 'noheader' => false, 'page' => '[pagename]', 'description' => $this->getDescription(), 'reclimit' => 4, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |