Repeat ampli's fix (described below) for other occurances on the site.
``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
ebbbeb6609
commit
54ae754ebe
27 changed files with 44 additions and 44 deletions
|
|
@ -311,11 +311,11 @@ sub www_siteStats {
|
|||
|
||||
my $enableForm = $self->getForm;
|
||||
$enableForm->addField( "hidden", name => "enableStats", value => 1 );
|
||||
$enableForm->addField( "submit", name => 'submit', value => $i18n->get( 'enable', 'Activity_SendWebguiStats' ) );
|
||||
$enableForm->addField( "submit", name => 'send', value => $i18n->get( 'enable', 'Activity_SendWebguiStats' ) );
|
||||
|
||||
my $disableForm = $self->getForm;
|
||||
$disableForm->addField( "hidden", name => "enableStats", value => 0 );
|
||||
$disableForm->addField( "submit", name => 'submit', value => $i18n->get( 'disable', 'Activity_SendWebguiStats' ) );
|
||||
$disableForm->addField( "submit", name => 'send', value => $i18n->get( 'disable', 'Activity_SendWebguiStats' ) );
|
||||
|
||||
my $output = '<h1>' . $i18n->get( 'topicName', 'Activity_SendWebguiStats' ) . '</h1>';
|
||||
$output .= ' <p>' . $i18n->get( 'why to send', 'Activity_SendWebguiStats' ) . '</p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue