Compare commits

...

14 Commits

Author SHA1 Message Date
Daniel Winzen
37fbb7bc43 Allow disabling the chat completely 2016-04-20 15:48:12 +02:00
Daniel Winzen
e72dc58d56 Simplify check_init() 2016-04-19 20:24:53 +02:00
Daniel Winzen
b2df491ab7 Add disable PM option 2016-04-19 20:14:06 +02:00
Daniel Winzen
63b4764ec4 Display a fatal error, if SQLite engine fails to connect to the database 2016-04-19 16:13:30 +02:00
Daniel Winzen
15a4eb62bc Simplify SQL table creation by using common data types for all engines 2016-04-19 15:52:15 +02:00
Daniel Winzen
60355735ee Make nocache refresh hack configurable in profile 2016-04-18 17:22:22 +02:00
Daniel Winzen
0b8cdcc1e5 Remove nocache hack from message reload again
(scrolls back to top every time)
2016-04-17 08:12:48 +02:00
Daniel Winzen
51ee2e1495 Split routing into several sub-functions 2016-04-16 21:04:41 +02:00
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
4 changed files with 462 additions and 379 deletions

View File

@@ -1,3 +1,17 @@
Version 1.17 - Apr. 20, 2016
Make nocache refresh hack configurable in profile
Add disable PM option
Allow disabling the chat completely
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

809
chat.php

File diff suppressed because it is too large Load Diff

View File

@@ -328,6 +328,13 @@ $T=array(
'guestreg' => 'Gäste sich selbst registrieren lassen',
'asmember' => 'Als Mitglied',
'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.',
'nocache' => 'Neulade-Hack für alte Browser hinzufügen.<br>Aktiviere dies, falls Neuladen nicht funktioniert.',
'disablepm' => 'Private Nachrichten deaktivieren',
'disablechat' => 'Chat deaktivieren',
'disabletext' => 'Chat deaktiviert Nachricht (html)',
'disabledtext' => 'Kurzzeitig deaktiviert'
);
?>

View File

@@ -328,6 +328,13 @@ $I=array(
'guestreg' => 'Let guests register themselves',
'asmember' => 'As member',
'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.',
'nocache' => 'Add refresh hack for old browsers.<br>Enable, if refreshing doesn\'t work.',
'disablepm' => 'Disable private messages',
'disablechat' => 'Disable chat',
'disabletext' => 'Chat disabled message (html)',
'disabledtext' => 'Temporarily disabled'
);
?>