diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-07-15 16:11:46 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-07-15 16:11:46 +0200 |
commit | d4de18edf7fafb4241c8856b6ace1a4dce285930 (patch) | |
tree | c7af69590604fdae96522ef26cdbd8cf18dc8d89 /install.php | |
parent | a1bc634ed7cd39d59f82797896dc5f42f753f527 (diff) | |
parent | 768d185262d4b53b1717808417c33fdd1ab64797 (diff) | |
download | rpg-d4de18edf7fafb4241c8856b6ace1a4dce285930.tar.gz rpg-d4de18edf7fafb4241c8856b6ace1a4dce285930.tar.bz2 |
Merge pull request #1231 from splitbrain/kill-all-input-buttons
Changed all input buttons to button buttons
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install.php b/install.php index 1a2d03dff..4de8093d6 100644 --- a/install.php +++ b/install.php @@ -243,7 +243,7 @@ function print_form($d){ </fieldset> <fieldset id="process"> - <input class="button" type="submit" name="submit" value="<?php echo $lang['btn_save']?>" /> + <button type="submit" name="submit"><?php echo $lang['btn_save']?></button> </fieldset> </form> <?php @@ -256,7 +256,7 @@ function print_retry() { <form action="" method="get"> <fieldset> <input type="hidden" name="l" value="<?php echo $LC ?>" /> - <input class="button" type="submit" value="<?php echo $lang['i_retry'];?>" /> + <button type="submit"><?php echo $lang['i_retry'];?></button> </fieldset> </form> <?php @@ -619,7 +619,7 @@ function langsel(){ echo '<option value="'.$l.'" '.$sel.'>'.$l.'</option>'; } echo '</select> '; - echo '<input type="submit" value="'.$lang['btn_update'].'" />'; + echo '<button type="submit">'.$lang['btn_update'].'</button>'; echo '</form>'; } |