From: <var...@us...> - 2014-10-06 09:42:32
|
Revision: 9192 http://sourceforge.net/p/phpwiki/code/9192 Author: vargenau Date: 2014-10-06 09:42:22 +0000 (Mon, 06 Oct 2014) Log Message: ----------- boolean --> bool Modified Paths: -------------- trunk/lib/plugin/PopularNearby.php trunk/lib/plugin/VisualWiki.php Modified: trunk/lib/plugin/PopularNearby.php =================================================================== --- trunk/lib/plugin/PopularNearby.php 2014-10-06 09:40:08 UTC (rev 9191) +++ trunk/lib/plugin/PopularNearby.php 2014-10-06 09:42:22 UTC (rev 9192) @@ -102,8 +102,8 @@ * mode=incoming: $pages iter and $direction=true * mode=outgoing: $pages iter and $direction=false * - * @param $pages array of WikiDB_Page's or a Page_iterator - * @param $direction boolean: true if incoming links + * @param array $pages array of WikiDB_Page's or a Page_iterator + * @param bool $direction true if incoming links * * @param int $limit * @return Array of sorted links Modified: trunk/lib/plugin/VisualWiki.php =================================================================== --- trunk/lib/plugin/VisualWiki.php 2014-10-06 09:40:08 UTC (rev 9191) +++ trunk/lib/plugin/VisualWiki.php 2014-10-06 09:42:22 UTC (rev 9192) @@ -406,7 +406,7 @@ * @internal param string $shape node shape; 'ellipse', 'box', 'circle', 'point' * @internal param string $label 'name': label by name, * 'number': label by unique number - * @return boolean error status; true=ok; false=error + * @return bool error status; true=ok; false=error */ function createDotFile($filename, $argarray) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |