diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-04-14 16:24:35 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-04-14 16:24:35 -0400 |
commit | 6278b2a923a89fbf2e77aee367dd6499e48f8c1b (patch) | |
tree | 5f2b29294545dfee8d389c6ab20ef034a58ab621 /include | |
parent | 1dd22be4d2fe997d9bde552f8d8a25ba12c67e7e (diff) | |
download | volse-hubzilla-6278b2a923a89fbf2e77aee367dd6499e48f8c1b.tar.gz volse-hubzilla-6278b2a923a89fbf2e77aee367dd6499e48f8c1b.tar.bz2 volse-hubzilla-6278b2a923a89fbf2e77aee367dd6499e48f8c1b.zip |
string fix: typo. slow down scroll to top in dispys
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
Diffstat (limited to 'include')
-rwxr-xr-x[-rw-r--r--] | include/security.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/security.php b/include/security.php index 66622fd33..fc816e5d7 100644..100755 --- a/include/security.php +++ b/include/security.php @@ -326,7 +326,7 @@ function check_form_security_token($typename = '', $formname = 'form_security_to } function check_form_security_std_err_msg() { - return t('The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before subitting it.') . EOL; + return t('The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it.') . EOL; } function check_form_security_token_redirectOnErr($err_redirect, $typename = '', $formname = 'form_security_token') { if (!check_form_security_token($typename, $formname)) { @@ -344,4 +344,4 @@ function check_form_security_token_ForbiddenOnErr($typename = '', $formname = 'f header('HTTP/1.1 403 Forbidden'); killme(); } -}
\ No newline at end of file +} |