From: <var...@us...> - 2010-04-05 19:45:09
|
Revision: 7318 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7318&view=rev Author: vargenau Date: 2010-04-05 19:45:03 +0000 (Mon, 05 Apr 2010) Log Message: ----------- Valid XHTML Modified Paths: -------------- trunk/lib/plugin/RateIt.php trunk/themes/MacOSX/images/index.php trunk/themes/alphatest.php Modified: trunk/lib/plugin/RateIt.php =================================================================== --- trunk/lib/plugin/RateIt.php 2010-04-01 17:39:07 UTC (rev 7317) +++ trunk/lib/plugin/RateIt.php 2010-04-05 19:45:03 UTC (rev 7318) @@ -362,17 +362,17 @@ $img_attr['src'] = $nk[$i%2]; if ($this->rating) { $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)"; + $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) { $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)"; + $img_attr['onmouseover'] = "displayRating('$reImgId','$reImgPrefix',$j,1,1)"; + $img_attr['onmouseout'] = "displayRating('$reImgId','$reImgPrefix',$this->pred,1,1)"; } else { - $img_attr['onMouseOver'] = "displayRating('$reImgId','$reImgPrefix',$j,0,1)"; - $img_attr['onMouseOut'] = "displayRating('$reImgId','$reImgPrefix',0,0,1)"; + $img_attr['onmouseover'] = "displayRating('$reImgId','$reImgPrefix',$j,0,1)"; + $img_attr['onmouseout'] = "displayRating('$reImgId','$reImgPrefix',0,0,1)"; } //$imgName = 'RateIt'.$reImgId.$i; $img_attr['name'] = $imgId . $i; Modified: trunk/themes/MacOSX/images/index.php =================================================================== --- trunk/themes/MacOSX/images/index.php 2010-04-01 17:39:07 UTC (rev 7317) +++ trunk/themes/MacOSX/images/index.php 2010-04-05 19:45:03 UTC (rev 7318) @@ -23,7 +23,7 @@ <script type="text/javascript"><!-- for (var n = 0; n < backgroundcolor.length; n++) { document.write( -' <a href="#" onMouseOver="javascript:changebg(' + n + ')">' + backgroundcolor[n] + '</a>' +' <a href="#" onmouseover="javascript:changebg(' + n + ')">' + backgroundcolor[n] + '</a>' ); } //--></script> <hr> Modified: trunk/themes/alphatest.php =================================================================== --- trunk/themes/alphatest.php 2010-04-01 17:39:07 UTC (rev 7317) +++ trunk/themes/alphatest.php 2010-04-05 19:45:03 UTC (rev 7318) @@ -17,7 +17,7 @@ <script type="text/javascript"><!-- for (var n = 0; n < backgroundcolor.length; n++) { document.write( -' <a href="#" onMouseOver="javascript:changebg(' + n + ')">' + backgroundcolor[n] + '</a>' +' <a href="#" onmouseover="javascript:changebg(' + n + ')">' + backgroundcolor[n] + '</a>' ); } //--></script> <? @@ -57,7 +57,7 @@ <script type="text/javascript"><!-- for (var n = 0; n < backgroundcolor.length; n++) { document.write( -' <a href="#" onMouseOver="javascript:changebg(' + n + ')">' + backgroundcolor[n] + '</a>' +' <a href="#" onmouseover="javascript:changebg(' + n + ')">' + backgroundcolor[n] + '</a>' ); } //--></script> <hr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |