diff options
author | Anika Henke <anika@selfthinker.org> | 2015-07-12 19:05:43 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2015-07-12 19:05:43 +0100 |
commit | ae614416a5d7f5cab6c5b82a0c45f587d7fa9c01 (patch) | |
tree | ccf67b3af75257730c1b38d01d91a3d36b92376e /install.php | |
parent | 619a02f57dbe49efa287f054aee381edaf3e0397 (diff) | |
download | rpg-ae614416a5d7f5cab6c5b82a0c45f587d7fa9c01.tar.gz rpg-ae614416a5d7f5cab6c5b82a0c45f587d7fa9c01.tar.bz2 |
changed all input type=submit buttons to button type=submit button for better stylability
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>'; } |