summaryrefslogtreecommitdiff
path: root/bin/rc.pl
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-21 17:51:45 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-21 17:51:45 +0000
commitaea558b1b941c8a7061f884211a6e5031e89b53c (patch)
tree56a8a764e7b24835e9df962c6d9a81f77edaa259 /bin/rc.pl
parent212d423210bf58328663f00e4e856ad0b4fbc3c0 (diff)
Fifth batch of files prepared for RFTL removal
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@258 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin/rc.pl')
-rwxr-xr-xbin/rc.pl18
1 files changed, 9 insertions, 9 deletions
diff --git a/bin/rc.pl b/bin/rc.pl
index 32301e77..498a2ea0 100755
--- a/bin/rc.pl
+++ b/bin/rc.pl
@@ -167,7 +167,7 @@ sub reconciliation {
$form->hide_form(qw(path login sessionid));
print qq|
-<input type=submit class=submit name=action value="|.$locale->text('Continue').qq|">
+<button type="submit" class="submit" name="action" value="continue">|.$locale->text('Continue').qq|</button>
</form>
|;
@@ -315,8 +315,8 @@ function check_errors(){
<input type=button name=calculate class=submit onClick="custom_calc_total()"
value='Calculate'>
|;
- print qq|</table><input type=submit name=action value="|.
- $locale->text("close_till").qq|">|;
+ print qq|</table><button type="submit" name="action" value="close_till">|.
+ $locale->text("close_till").qq|</button>|;
print qq|
</form>
@@ -665,14 +665,14 @@ sub display_form {
|;
if ($form->{'pos'}){
- $close_next = qq|<input type=submit class=submit name=action
- value="|.$locale->text('close_next').qq|">|;
+ $close_next = qq|<button type="submit" class="submit" name="action"
+ value="close_next">|.$locale->text('close_next').qq|</button>|;
$done = "";
}
else {
$close_next = "";
- $done = qq|<input type=submit class=submit name=action
- value="|.$locale->text('Done').qq|">|;
+ $done = qq|<button type="submit" class="submit" name="action"
+ value="done">|.$locale->text('Done').qq|</button>|;
}
if ($form->{'pos'}){
$difference = qq|
@@ -743,8 +743,8 @@ sub display_form {
print qq|
<br>
-<input type=submit class=submit name=action value="|.$locale->text('Update').qq|">
-<input type=submit class=submit name=action value="|.$locale->text('Select all').qq|">
+<button type="submit" class="submit" name="action" value="update">|.$locale->text('Update').qq|</button>
+<button type="submit" class="submit" name="action" value="select_all">|.$locale->text('Select all').qq|</button>
$done
$close_next |;
}