diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-12 12:02:00 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-12 12:02:00 +0000 |
commit | 1a6bc7aaf9b255eb8dabcc102d4f516e050cd4c0 (patch) | |
tree | 4741f57da8e0634c9b236faa455bb2a66467eac6 /views/installation/install/nav.php | |
parent | fc7f5ac1455f1297de2122391c4052565bf6b591 (diff) | |
download | elgg-1a6bc7aaf9b255eb8dabcc102d4f516e050cd4c0.tar.gz elgg-1a6bc7aaf9b255eb8dabcc102d4f516e050cd4c0.tar.bz2 |
Fixes #2522 - disabling form submission after first submission
git-svn-id: http://code.elgg.org/elgg/trunk@7065 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/installation/install/nav.php')
-rw-r--r-- | views/installation/install/nav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/installation/install/nav.php b/views/installation/install/nav.php index d6a20ea2b..ca4b8a87b 100644 --- a/views/installation/install/nav.php +++ b/views/installation/install/nav.php @@ -19,7 +19,7 @@ if (isset($vars['refresh']) && $vars['refresh']) { // create next button and selectively disable $next_text = elgg_echo('next'); $next_link = "{$vars['url']}install.php?step={$vars['next_step']}"; -$next = "<a href=\"$next_link\" disable=\"disable\">$next_text</a>"; +$next = "<a href=\"$next_link\">$next_text</a>"; if (isset($vars['advance']) && !$vars['advance']) { // disable the next button $next = "<a class=\"disabled\">$next_text</a>"; |