Gossamer Forum
Home : Products : Links 2.0 : Customization :

Paul Wilson's 5-star mod

Quote Reply
Paul Wilson's 5-star mod
Hi Paul,

Just got your 5Star rating and before implementing it, got a question regarding the code:


$rating = qq|<img src="$build_root_url/images/clr.gif">| x '5' if ($rec{'Rating'} =~ /(9|10)(\.\d\d)?/);
$rating = qq|<img src="$build_root_url/images/clr.gif">| x '4' if ($rec{'Rating'} =~ /(7|8)(\.\d\d)?/);
$rating = qq|<img src="$build_root_url/images/clr.gif">| x '4' if ($rec{'Rating'} =~ /(5|6)(\.\d\d)?/);
$rating = qq|<img src="$build_root_url/images/clr.gif">| x '4' if ($rec{'Rating'} =~ /(3|4)(\.\d\d)?/);
$rating = qq|<img src="$build_root_url/images/clr.gif">| x '4' if ($rec{'Rating'} =~ /(1|2)(\.\d\d)?/);


Code appears identical for all the lines except the first. Shouldn't the '4' be '3','2' and '1' for all the rest? In other words, isn't " | x '5' " the line that determines how many times the graphic is repeated?


Like this?


$rating = qq|<img src="$build_root_url/images/clr.gif">| x '5' if ($rec{'Rating'} =~ /(9|10)(\.\d\d)?/);
$rating = qq|<img src="$build_root_url/images/clr.gif">| x '4' if ($rec{'Rating'} =~ /(7|8)(\.\d\d)?/);
$rating = qq|<img src="$build_root_url/images/clr.gif">| x '3' if ($rec{'Rating'} =~ /(5|6)(\.\d\d)?/);
$rating = qq|<img src="$build_root_url/images/clr.gif">| x '2' if ($rec{'Rating'} =~ /(3|4)(\.\d\d)?/);
$rating = qq|<img src="$build_root_url/images/clr.gif">| x '1' if ($rec{'Rating'} =~ /(1|2)(\.\d\d)?/);

Thanks!



Subject Author Views Date
Thread Paul Wilson's 5-star mod webcamworld 4616 Aug 29, 2001, 3:23 AM
Thread Re: Paul Wilson's 5-star mod
webcamworld 4594 Aug 29, 2001, 4:15 AM
Thread Re: Paul Wilson's 5-star mod
webcamworld 4572 Aug 29, 2001, 4:22 AM
Thread Re: Paul Wilson's 5-star mod
Paul 4568 Aug 29, 2001, 7:04 AM
Thread Re: Paul Wilson's 5-star mod
webcamworld 4598 Aug 29, 2001, 7:06 AM
Thread Re: Paul Wilson's 5-star mod
webcamworld 4545 Aug 30, 2001, 2:16 PM
Post Re: [webcamworld] Paul Wilson's 5-star mod
qdice 4418 Oct 6, 2001, 8:04 PM
Post Re: [webcamworld] Paul Wilson's 5-star mod
qdice 4408 Oct 6, 2001, 10:38 PM
Thread Re: [RedRum] Paul Wilson's 5-star mod
qdice 4433 Oct 6, 2001, 10:41 PM
Post Re: [Patricio] Paul Wilson's 5-star mod
Paul 4426 Oct 7, 2001, 4:39 AM
Thread Re: [Patricio] Paul Wilson's 5-star mod
Paul 4458 Oct 7, 2001, 4:59 AM
Post Re: [RedRum] Paul Wilson's 5-star mod
qdice 4384 Oct 7, 2001, 12:36 PM
Thread Re: [RedRum] Paul Wilson's 5-star mod
qdice 4409 Oct 7, 2001, 12:52 PM
Thread Re: [Patricio] Paul Wilson's 5-star mod
Paul 4396 Oct 7, 2001, 1:16 PM
Post Re: [RedRum] Paul Wilson's 5-star mod
qdice 4367 Oct 7, 2001, 9:11 PM