1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 02:05:57 +00:00

disable login submit button when changing language

This commit is contained in:
Andrew Dolgov
2007-08-12 03:30:18 +01:00
parent aa531f289d
commit 1efaefda1f

View File

@@ -24,9 +24,15 @@ function init() {
}
function languageChange(elem) {
var lang = elem[elem.selectedIndex].value;
setCookie("ttrss_lang", lang, <?php print SESSION_COOKIE_LIFETIME ?>);
window.location.reload();
try {
document.forms['loginForm']['click'].disabled = true;
var lang = elem[elem.selectedIndex].value;
setCookie("ttrss_lang", lang, <?php print SESSION_COOKIE_LIFETIME ?>);
window.location.reload();
} catch (e) {
exception_error("languageChange", e);
}
}
</script>
@@ -69,7 +75,7 @@ window.onload = init;
<label for="remember_me">Remember me on this computer</label>
</td></tr> -->
<tr><td colspan="2" align="right" class="innerLoginCell">
<input type="submit" class="button" value="Login">
<input type="submit" class="button" value="Login" name='click'>
<input type="hidden" name="action" value="login">
<input type="hidden" name="rt"
value="<?php if ($return_to != 'none') { echo $return_to; } ?>">