diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-19 23:15:27 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-19 23:15:27 +0200 |
commit | b3f6eb22249408e927c8c83e66d60d2aba52ccaf (patch) | |
tree | b9b47e92076b39d369215992291f4370e147a97a /apps/calendar | |
parent | 86f6d2fc25f4f7f7a81bfd27dd839efbdeedaa6c (diff) | |
download | nextcloud-server-b3f6eb22249408e927c8c83e66d60d2aba52ccaf.tar.gz nextcloud-server-b3f6eb22249408e927c8c83e66d60d2aba52ccaf.zip |
removed unneeded and dangerous reset button
Diffstat (limited to 'apps/calendar')
-rw-r--r-- | apps/calendar/templates/part.editevent.php | 5 | ||||
-rw-r--r-- | apps/calendar/templates/part.newevent.php | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/apps/calendar/templates/part.editevent.php b/apps/calendar/templates/part.editevent.php index 98e7bddfb0a..ae46cb4ffd9 100644 --- a/apps/calendar/templates/part.editevent.php +++ b/apps/calendar/templates/part.editevent.php @@ -95,8 +95,7 @@ </tr> </table> <span id="editevent_actions"> - <input type="button" style="float: left;" value="<?php echo $l -> t("Submit");?>"> - <input type="button" style="float: right;" value="<?php echo $l -> t("Reset");?>"> + <input type="button" value="<?php echo $l -> t('Submit');?>"> </span> </div> <script type="text/javascript"> @@ -131,4 +130,4 @@ document.getElementById("totime").style.color = "#A9A9A9"; } } -</script>
\ No newline at end of file +</script> diff --git a/apps/calendar/templates/part.newevent.php b/apps/calendar/templates/part.newevent.php index 4360a704cb8..3327ec91df7 100644 --- a/apps/calendar/templates/part.newevent.php +++ b/apps/calendar/templates/part.newevent.php @@ -111,8 +111,7 @@ </tr> </table> <span id="newcalendar_actions"> - <input type="button" style="float: left;" value="<?php echo $l -> t("Submit");?>"> - <input type="button" style="float: right;" value="<?php echo $l -> t("Reset");?>"> + <input type="button" value="<?php echo $l -> t('Submit');?>"> </span> </div> <script type="text/javascript"> @@ -146,4 +145,4 @@ document.getElementById("totime").style.color = "#A9A9A9"; } } -</script>
\ No newline at end of file +</script> |