From: <var...@us...> - 2015-07-10 14:34:17
|
Revision: 9711 http://sourceforge.net/p/phpwiki/code/9711 Author: vargenau Date: 2015-07-10 14:34:15 +0000 (Fri, 10 Jul 2015) Log Message: ----------- No return argument Modified Paths: -------------- trunk/lib/wikilens/RatingsDb.php Modified: trunk/lib/wikilens/RatingsDb.php =================================================================== --- trunk/lib/wikilens/RatingsDb.php 2015-07-10 14:20:58 UTC (rev 9710) +++ trunk/lib/wikilens/RatingsDb.php 2015-07-10 14:34:15 UTC (rev 9711) @@ -625,7 +625,7 @@ function metadata_set_rating($userid, $pagename, $dimension, $rating = -1) { - if (!$pagename) return false; + if (!$pagename) return; $page = $this->_dbi->getPage($pagename); $data = $page->get('rating'); if ($rating == -1) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |