Bernd Wurst commited on 2014-02-08 02:31:22 Zeige 1 geänderte Dateien mit 12 Einfügungen und 0 Löschungen.
@@ -0,0 +1,12 @@
+function redirect(status) {
+ if (status == "ok") {
+ window.location.reload();
+ } else {
+ window.location.href="../../certlogin/";
+ }
+}
+
+$(function () {
+ $.get("../../certlogin/ajax.php", redirect);
+);