The Save buttons in the two first steps didn't work in Chrome.
According to a hint in the YUI Button documentation about a problem in using "submit" as a value of the name attribute, I changed submit button name in the two first steps from "submit" to "send". This solved the problem.
This commit is contained in:
parent
f797429b5f
commit
ebbbeb6609
2 changed files with 3 additions and 3 deletions
|
|
@ -689,7 +689,7 @@ sub www_editSettings {
|
|||
$tabform->getTab("account")->addFieldset( $settingsForm, name => $account->{identifier}, label => $title );
|
||||
}
|
||||
|
||||
$tabform->addField( "submit", name => "submit" );
|
||||
$tabform->addField( "submit", name => "send" );
|
||||
$output .= $tabform->toHtml;
|
||||
|
||||
my $ac = WebGUI::AdminConsole->new($session,"settings");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue