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:
Scott Walters 2011-06-29 19:13:18 -04:00
parent ebbbeb6609
commit 54ae754ebe
27 changed files with 44 additions and 44 deletions

View file

@ -245,7 +245,7 @@ sub view {
-name=>"func",
-value=>"setStatus"
);
$f->addField( "submit", name => "submit" );
$f->addField( "submit", name => "send" );
my ($isInGroup) = $session->db->quickArray(
"select count(*) from groupings where userId=? and groupId=?",
@ -368,7 +368,7 @@ sub www_selectDelegates {
value => $delegates, ##My current delegates, if any
subtext => $i18n->get('in/out status delegates subtext'),
);
$f->addField( "submit", name => "submit" );
$f->addField( "submit", name => "send" );
return '<h1>' . $i18n->get('select delegate') . '</h1> ' . $f->toHtml;
}