Hi jjpedersen,
did you changed anything in the code?
The source code of your site:
<p>
1 (Bad)
<input style="display: none;" value="1" name="imgvote" type="radio">
<input style="display: none;" value="2" name="imgvote" type="radio">
<input style="display: none;" value="3" name="imgvote" checked="checked" type="radio">
<input style="display: none;" value="4" name="imgvote" type="radio">
<input style="display: none;" value="5" name="imgvote" type="radio">
5 (Good)
</p>
and the code of JoomGallery 1.5.0.2 at this point:
for($i = 1; $i <= $config->jg_maxvoting; $i++)
{
if($i == $selitem)
{
$checked = 'checked="checked"';
}
else
{
$checked = '';
}
?>
<input type="radio" value="<?php echo $i; ?>" name="imgvote" <?php echo $checked; ?> />
<?php
}
Nothing to see in our code with style="display: none;"....