starbizcon has asked for the wisdom of the Perl Monks concerning the following question:
If $CONFIG{convert_links_to_friendly} is 1, it still works well:$Cgi->popup_menu("convert_links_to_friendly", \@label, $CONFIG{convert_links_to_friendly}, \%LABEL);
however if $CONFIG{convert_links_to_friendly} is 0, now it prints:<select name="convert_links_to_friendly" > <option selected="selected" value="1">Yes</option> <option value="0">No</option> </select>
<select name="convert_links_to_friendly"> <option value="1">Yes</option> <option value="0">No</option> </select>
Do you have any ideas on what could have caused this behaviour?<select name="convert_links_to_friendly"> <option value="1">Yes</option> <option selected="selected" value="0">No</option> </select>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problems with recent CGI.pm
by almut (Canon) on Aug 05, 2008 at 15:40 UTC |