From: <var...@us...> - 2014-08-27 10:04:46
|
Revision: 9055 http://sourceforge.net/p/phpwiki/code/9055 Author: vargenau Date: 2014-08-27 10:04:39 +0000 (Wed, 27 Aug 2014) Log Message: ----------- elseif Modified Paths: -------------- trunk/lib/plugin/RateIt.php Modified: trunk/lib/plugin/RateIt.php =================================================================== --- trunk/lib/plugin/RateIt.php 2014-08-27 09:41:07 UTC (rev 9054) +++ trunk/lib/plugin/RateIt.php 2014-08-27 10:04:39 UTC (rev 9055) @@ -373,7 +373,7 @@ $img_attr['src'] = $ok[$i % 2]; $img_attr['onmouseover'] = "displayRating('$reImgId','$reImgPrefix',$j,0,1)"; $img_attr['onmouseout'] = "displayRating('$reImgId','$reImgPrefix',$this->rating,0,1)"; - } else if (!$this->rating and $this->pred) { + } elseif (!$this->rating and $this->pred) { $img_attr['src'] = $rk[$i % 2]; $img_attr['onmouseover'] = "displayRating('$reImgId','$reImgPrefix',$j,1,1)"; $img_attr['onmouseout'] = "displayRating('$reImgId','$reImgPrefix',$this->pred,1,1)"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |