Compare commits

...

9 Commits

Author SHA1 Message Date
Daniel Winzen
db86cb984b Fix a few forms to be used cookie-less 2016-04-15 16:07:15 +02:00
Daniel Winzen
30d460b91e Improve invalid filter handling + allow new line match with \n 2016-04-15 15:16:18 +02:00
Daniel Winzen
ea24d7ae5b Add caching hack for aggressively caching browsers (e.g. links) 2016-04-15 08:54:14 +02:00
Daniel Winzen
6a8186d984 de-duplicate code by using new functions 2016-04-14 22:32:02 +02:00
Daniel Winzen
2757f62d48 Properly escape some parameters 2016-04-14 22:08:20 +02:00
Daniel Winzen
df140d0ee7 Fix warning on redirection of links without a scheme 2016-04-14 19:44:32 +02:00
Daniel Winzen
6890bdb80a Allow extreme captcha to be solved in both directions 2016-04-14 19:12:15 +02:00
Daniel Winzen
5c62bcef00 Add CSS classes and move more css to the database 2016-04-14 18:49:25 +02:00
Daniel Winzen
f2c6d9fb95 Fixed a typo 2016-04-13 21:38:20 +02:00
4 changed files with 288 additions and 251 deletions

@@ -1,3 +1,19 @@
Version 1.16.4 - Apr. 15, 2016
Properly escape some parameters
Add caching hack for aggressively caching browsers (e.g. links)
Improve invalid filter handling + allow new line match with \n
Fix a few forms to be used cookie-less
Version 1.16.3 - Apr. 14, 2016
Fix warning on redirection of links without a scheme
Version 1.16.2 - Apr. 14, 2016
Add CSS classes and move more css to the database
Allow extreme captcha to be solved in both directions
Version 1.16.1 - Apr. 13, 2016
Fixed a typo
Version 1.16 - Apr. 13, 2016 Version 1.16 - Apr. 13, 2016
Use constants for configuration Use constants for configuration
Simplify extreme captcha code generation Simplify extreme captcha code generation

501
chat.php

File diff suppressed because it is too large Load Diff

@@ -328,6 +328,8 @@ $T=array(
'guestreg' => 'Gäste sich selbst registrieren lassen', 'guestreg' => 'Gäste sich selbst registrieren lassen',
'asmember' => 'Als Mitglied', 'asmember' => 'Als Mitglied',
'assuguest' => 'Als Anwerber', 'assuguest' => 'Als Anwerber',
'fatalerror' => 'Fataler Fehler' 'fatalerror' => 'Fataler Fehler',
'prevmatch' => 'Ihr regex war folgender',
'matchtoolong' => 'Ihr Match war zu lang. Sie können max. 255 Zeichen benutzen. Versuchen Sie diesen aufzuteilen.'
); );
?> ?>

@@ -328,6 +328,8 @@ $I=array(
'guestreg' => 'Let guests register themselves', 'guestreg' => 'Let guests register themselves',
'asmember' => 'As member', 'asmember' => 'As member',
'assuguest' => 'As applicant', 'assuguest' => 'As applicant',
'fatalerror' => 'Fatal error' 'fatalerror' => 'Fatal error',
'prevmatch' => 'Your match was as follows',
'matchtoolong' => 'Your match was too long. You can use max. 255 characters. Try splitting it up.'
); );
?> ?>