blob: e3daf675474926ce9123cf009e19e7f6665bd6ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html><head><script>
document.cookie = "warned=1; Expires=Tue, 19 Jan 2038 00:00:00 GMT; HttpOnly";
var l = /language=[^&]*/.exec(location.search).replace(/[ \t]/g, '').split(",");
loop: for (var i = 0; i < l.length; i++) {
switch (l[i].split(';')[0]) {
case "en": var lang = "en"; break loop;
case "fr": var lang = "fr"; break loop;
}
}
localStorage.persistent = {
hdisable: location.search.indexOf("hdisable=on") > -1,
language: lang || "en"
};
location.replace("./");
</script></head><body>If you're seeing this, something's gone wrong. Go back and try again, and if it still doesn't work, file a bug.</body></html>
|