Handle radio->menu being hash or scalar - Line #1339

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@879 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
sakolish 2008-03-24 19:42:01 +00:00
parent e22e1c9b92
commit 5b10614e20

View File

@ -1336,7 +1336,7 @@ sub readdecfg {
##################################
# Select radio button
##################################
my $value = %$_->{value};
my $value = ( ref($_) eq 'HASH' ) ? %$_->{value} : $_;
$radio->value( $value );
##################################