aboutsummaryrefslogtreecommitdiff
path: root/views/installation/forms/install/template.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/installation/forms/install/template.php')
-rw-r--r--views/installation/forms/install/template.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/views/installation/forms/install/template.php b/views/installation/forms/install/template.php
index 7e7a668d3..ea9a08a3d 100644
--- a/views/installation/forms/install/template.php
+++ b/views/installation/forms/install/template.php
@@ -28,19 +28,3 @@ $submit_params = array(
$form_body .= elgg_view('input/submit', $submit_params);
echo $form_body;
-
-?>
-
-<script type="text/javascript">
- //prevent double-submission
- $(function() {
- $('form').submit(function() {
- if (this.data('submitted')) {
- return false;
- }
-
- this.data('submitted', true);
- return true;
- }
- });
-</script>