-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
1917 lines (1492 loc) · 50.6 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
########################################################################
# #
# Version 4 / / / #
# -----------__---/__---__------__----__---/---/- #
# | /| / /___) / ) (_ ` / ) /___) / / #
# _|/_|/__(___ _(___/_(__)___/___/_(___ _/___/___ #
# Free Content / Management System #
# / #
# #
# #
# Copyright 2005-2015 by webspell.org / webspell.info #
# #
# visit webSPELL.org, webspell.info to get webSPELL for free #
# - Script runs under the GNU GENERAL PUBLIC LICENSE #
# - It's NOT allowed to remove this copyright-tag #
# -- http://www.fsf.org/licensing/licenses/gpl.html #
# #
# Code based on WebSPELL Clanpackage (Michael Gruber - webspell.at), #
# Far Development by Development Team - webspell.org / webspell.info #
# #
# visit webspell.org / webspell.info #
# #
########################################################################
### webspell 4.2.3a ( 2011- 09 - 10 ) changeset 65:bf112d65d66b
* (all or a lot of files/folders):
- changed copyright notice
* language/*:
- language corrections
- new languages il,ir,sr
* _functions.php
- performance optimization
* admin/contact.php
- security fix
* admin/page_statistic.php
- bugfix for InnoDB
* admin/sponsors.php
- corrected misspellings in urls
* admin/squads.php
- security fix
* admin/users.php
- security fix
* calendar.php
- added Translation for new clanwar message
* clanwars.php
- fixed php notice
* getlang.php
- escape language var
* guestbook.php
- escape name of existing users
* install/functions.php
- removed type from create table, because deprecated since mysql4
* install/step03.php
- lang var fixed
* js/bbcode.js
- fixed autoresize bug
* news.php
- renamed variable because of conflict (flags vs background color)
* newsletter.php
- security fix against xss
* messenger.php
- allow whitespaces in comma separeted receiver list
- security fix against xss
* poll.php
- fix against multiple voting
* polls.php
- fix against multiple voting
* profile.php
- fixed age of people older than 99
- fatal error fixed
* src/func/bbcode.php
- bbcode fix for multiple [quote]
- bbcode layout fix for [quote]
* src/func/captcha.php
- fix against 0 as captcha result
* src/func/feeds.php
- fixed date of feed (now date of latest news)
* src/func/messenger.php
- added HP Title to notification mails
* src/seo.php
- change website title on news according to selected language
* version.php:
- increased version numbering
### webspell 4.2.2a ( 2010-02-28 ) rev.428 (new svn server)
* (all or a lot of files/folders):
- changed copyright notice
* _functions.php:
- performance optimizations
- check ban expiring every hour instead of every day
- fixed ban removement
- added usage of $GLOBALS['ip']
- fixed url/email validation
* _settings.php:
- security fix: added usage of security_slashes($_REQUEST)
* admin/boards.php:
- fixed removing of shadow topics on board deletions
* admin/languages/*/squads.php:
- removed unused language keys
* admin/page_statistics.php:
- removed E_STRICT/E_DEPRECATED error
- fixed query failed, if db name contains special characters
- fixed display of all tables
* admin/squads.php:
- removed size limitations for squad pics/icons
- using IMAGETYPE constants instead of their values
* admin/users.php:
- replaced mysql_query with safe_query
* articles.php:
- replaced mysql_query with safe_query
* asearch.php:
- security fix: fixed sql injection possibility
- limited template usage
* awards.php:
- fixed save edit when the user is clanwaradmin or newsadmin
* calendar.php:
- removed double load of language files
- fixed empty lines in the calendar
* clanwars_details.php:
- security fix: enforced integer type on cwID
- fixed information when no screenshot is available
* comments.php:
- added usage of $GLOBALS['ip']
* contact.php:
- security fix: fixed possibility to send messages to any email addresses
- added usage of $GLOBALS['ip']
* counter_stats.php:
- fixed max width of counter entry
* forum.php:
- removed double load of language files
- removed double declared counter variable
* forum_topic.php:
- fixed forum ranks
- fixed sticky topic feature
- fixed posibility to edit topics without headline/content
* guestbook.php:
- added usage of $GLOBALS['ip']
* index.php:
- removed mysql debug information
* install/index.php:
- removed unused code
- removed unused language keys
* install/functions.php:
- fixed wrong default website title
* install/languages/*/index.php
- removed unused language keys
* install/languages/fr/*:
- removed BOM
* install/step*.php:
- removed language selection flags
- fixed alignment of steps
* install/step01.php:
- replaced character > with >
* install/step03.php:
- replaced character > with >
* install/style.css:
- fixed alignment of steps
* js/bbcode.js:
- added additional special characters to the bbcode checkers searchregexp
- translated comments
* languages/*/contact.php:
- security fix: fixed possibility to send messages to any email addresses
* languages/*/latesttopics.php:
- added language variables
* languages/*/rating.php:
- fixed rating error messages
* languages/*/register.php:
- fixed possibility to register if you are allready logged in
- added language variables
* languages/de/countries.php:
- fixed spelling
* languages/nl/contact.php:
- fixed spelling
* languages/nl/whoisonline.php:
- fixed spelling
* languages/uk/articles.php:
- fixed spelling
* languages/uk/counter.php:
- fixed spelling
* languages/uk/register.php:
- fixed spelling
* latesttopics.php:
- added language variables
* myprofile.php:
- fixed default language selection
* news.php:
- fixed news headlines if they contain a username
* out.php:
- fixed adding of "http://"
* partners.php:
- added possibility of text partners instead of images only
* profile.php:
- added usage of $GLOBALS['ip']
- replaced mysql_query with safe_query
- fixed user ranks
* rating.php:
- fixed rating error messages
* register.php:
- fixed possibility to register if you are allready logged in
- added language variables
* sc_headlines.php:
- fixed rubric usage
* search.php:
- added strtolower to article title tests
* shoutbox_content.php:
- security fix: fixed sql injection possibility
- added usage of $GLOBALS['ip']
* sponsors.php:
- fixed adding of "http://"
- fixed redirection
* src/func/bbcode.php:
- fixed img tag replace
- fixed png image info
- fixed disabling of img resizing
- added form tag to htmlml
* src/seo.php:
- fixed page title for server.php
* templates/addbbcode.html:
- fixed selectors
* templates/comments_add_visitor.html:
- added id="post" to the form tag
* templates/sc_partners.html:
- added possibility of text partners instead of images only
* version.php:
- raised version numbering
### webspell 4.2.1a ( 2009-07-29 ) rev.3483
* (all or a lot of files/folders):
- removed the usage of the deprecated ereg() function
- replaced url and email validator code parts with the new validator functions
- code cleanups
* _functions.php:
- added url validator function
- added email validator function
* _settings.php:
- added new global variable $insertlinks
* _stylesheet.css:
- added css class for [list]
* admin/admincenter.php:
- missing </a> added
* admin/gallery.php:
- fixed png support
* admin/filecategorys.php:
- fixed deletion of subcategories and files in it on deletion of a category
* admin/group-users.php:
- changed group user management to an ajax solution
- fixed paging
* admin/languages/de/imprint.php:
- spelling corrections
* admin/languages/de/partners.php:
- spelling corrections
* admin/languages/hu/*:
- added hungarian language files
* admin/languages/it/*:
- added italian languages files
* admin/languages/uk/partners.php:
- spelling corrections
* admin/lock.php:
- fixed wrong time format
* admin/overview.php:
- fixed error log status coloring
* admin/visitor_statistic.php:
- replaced hardcoded strings with language variables
* awards.php:
- security fixed: secured page, sort and type parameters
* calendar.php:
- fixed problems when the counter was included before the calendar
* challenge.php:
- security fixed: secured sort parameter
* clanwars.php:
- removed old debug code
- removed double <form> tag
- removed unnecessary variable assignments
- fixed deletion of maps
- fixed maps unserialize problems
- fixed clanwars news
* demos.php:
- fixed file loss on demo edit if the files wasn't selected for upload again
* forum.php:
- removed unnecessary variable assignment
- removed php notice
- optimized mysql queries
* forum_topic.php:
- removed php notice
- security fix: secured type parameter
* gallery.php:
- security fix: removed possible mysql injection
* getlang.php:
- security fix: removed possibility of xss exploits
* index.php:
- removed old comment
* install/functions.php:
- removed php notices
- corrected game names
- fixed history converter
* install/languages/fr/*:
- added french language files
* install/languages/hu/*:
- added hungarian language files
* install/step03.php:
- removed php notices
* install/step05.php:
- removed php notices
* install/step06.php:
- removed php notices
* joinus.php:
added proper escaping of squad names for the dropdown selection
* js/bbcode.js:
- fixed deletion of maps in clanwar reports
- fixed bbcodechecker url issues
- fixed wrong function name
* languages/hr/index.php:
- removed BOM chars
* latesttopics.php:
- fixed breaking special chars
- fixed amount of topics
- performance optimizations
- fixed topic title in tooltip
* languages/credits.txt:
- updated credits information
* languages/*/messenger.php
- added language variables
* languages/*/static.php:
- added translations for error messages if a user does not have access to a specific static page
* languages/de/forum.php:
- spelling corrections
* languages/hu/bbcode.php:
- corrected translations
* languages/hu/login.php:
- corrected translations
* languages/lt/bbcode.php:
- removed BOM chars
* languages/lt/captcha.php:
- removed BOM chars
* languages/lt/feeds.php:
- removed BOM chars
* languages/lt/seo.php:
- removed BOM chars
* languages/se/* (not all, but a lot of them):
- updated swedish language files
* languages/uk/loginoverview.php:
- spelling corrections
* languages/uk/profile.php:
- spelling corrections
* members.php:
- fixed singular/plural issues (member/members)
- added htmloutput() to userdescriptions
* messenger.php:
- fixed loss of message and title if receiver is unknown
* news_comments.php:
- code cleanups
- minor optimizations
* picture.php:
- security fix: removed possibility to access any other files than gallery files
* profile.php:
- display birthday as d.m.Y instead of Y-m-d
- optimized mysql queries
* readme.en.txt
- removed BOM chars
* register.php:
- security fix: added mailkey test
* registered_users.php:
- changed url regex
* sc_headlines.php:
- code cleanups
- minor optimizations
* squads.php:
- fixed singular/plural issues (member/members)
* src/func/bbcode.php:
- fixed layout breaking urls
- added css class for [list]
- security fix: removed xss possibility in url & image replacements
- optimized performance by replacing a mysql query with the usage of a available global variable
- fixed quote replacement
* src/func/feeds.php:
- fixed rss feed title
- fixed the breaking of feeds when certain special chars are used
* src/func/game.php:
- removed unnecessary code
* src/func/language.php:
- security fix: removed possibility of xss exploits
- security fix: removed injection possibility via language cookie
* src/func/useraccess.php:
- fixed possible wrong forum moderator rights
* static.php:
- fixed toggle support
- added error message if a user does not have access to a specific static page
* templates/articles_edit.html:
- added missing rows attribute at the textarea
* templates/clanwar_edit.html:
- added missing doublequotes
* templates/comments_add_user.html:
- added js check to prevent double posts
* templates/comments_add_visitor.html:
- added js check to prevent double posts
- added bbcode navigation for visitors
* templates/forum_newreply.html:
- added js check to prevent double posts
* templates/forum_newtopic.html:
- added js check to prevent double posts
* templates/member_details_head.html:
- fixed singular/plural issues (member/members)
* templates/member_head_head.html:
- fixed singular/plural issues (member/members)
* templates/pm_new.html:
- fixed loss of message and title if receiver is unknown
* templates/squads_head.html:
- fixed singular/plural issues (member/members)
* usergallery.php:
- fixed png support
* version.php:
- increased version numbering
### webspell 4.2.0a ( 2009-04-04 )
* * (all or a lot of files/folders):
- code cleanups
- language system included
- copyright updated
- XHTML conformity
- utf-8 support
- added redirections
- syntax fixes (php notices removed)
- grammar and spelling corrections
- added/updated css classes
- added bbcodechecker function calls
- prevent overflows of content
- added usage of getinput()
- fixed escape problems
- optimized mysql queries
- performance optimizations
- replaced string functions with multibyte capable versions
- outsourced a lot of html in the php files to template files
- increased cross browser compatibility
* admin/*:
- new admincenter design
- added general admin features protection
- added js and php form check functions
* admin/about.php:
- various small bugfixes
- fixed sql queries
- added addbbcode + flags support
* admin/admincenter.php:
- added various menu links
- regrouped menu
- security fix
- changed menu order
* admin/bannerrotation.php:
- fixed confirm dialog
- added png support
- fixed banner update
* admin/boards.php:
- added forum group selector
- added read/write rights
- spelling fixes
- added unselect_all javascript function
- strip tags from catinfo/catname
- added board information in board overview
- fixed non displayed category and group names
* admin/contact.php:
- added contact management
* admin/database.php:
- added access check in optimize case
- fixed mysql backup
* admin/filecategorys.php:
- added unlimited sub-categories
- fixed lost categories on edit
- fixed the possibility to create categories without names
* admin/faq.php:
- fixed edit bug, now selecting the correct previous category
- splitted up faq and faq categories
- added addbbcode + flags support
- added bbcode output in overview
- removed output of faq answers from the overview
* admin/faqcategories.php:
- splitted up faq and faq categories
- fixed bbcode support
- added addbbcode
- added bbcode output in overview
* admin/gallery.php
- fixed path
- added group membership in galleries overview
- bugfix gallery group edit leads to "new group"
- added possibility to upload pictures via ftp to allready existing gallerys
- added direct gallery links
- forbidded creation of galleries without a gallery group
- prevented deleting of gallery groups if there are still galleries existing in it
* admin/games.php:
- fixed confirm dialog
- added possibility to reupload a game icon on edit
* admin/groups.php:
- added user groups administration
* admin/group-users.php
- added group users administration
* admin/history.php:
- added success message
- fixed double escaping
- added addbbcode + flags support
* admin/icons.php:
- file deleted
* admin/imprint.php:
- added title template
- added addbbcode + flags support
* admin/members.php:
- added forum group rights changer
- delete old intern board user rights
- added distiction between news writer and news publisher rights
- bugfix
- added new templates
- added possibility to add users directly to a user group
- added tooltips in member rights area
- added addbbcode + flags support
- fixed revoking of moderator rights
* admin/newslanguages.php:
- added management of news languages
* admin/newsletter.php:
- mail title and body are now preserved via sessions during testing
- setted newsletter language to page default language
- added admin email adress as reply adress
- updated style
* admin/overview.php:
- added admin overview
* admin/partners.php:
- added current banner on edit
- added clickcounter, sort and display choice
- new partner image upload system
* admin/ranks.php:
- changed min and max fields
* admin/scrolltext.php:
- changed to javascript solution
- new administration
- added new options
* admin/servers.php
- added notice to enter the port, otherwise fsockopen for server status will fail
- fixed bbcode support
- added addbbcode + flags support
- added bbcode output in overview
* admin/settings.php:
- dropdown menu for default language select added
- tooltip outsourced
- added global $new_chmod for uploaded files
- removed hideinternboards
- added maximum latest topic chars db support
- added ban settings
- added captcha options
- added db based picture autoresize options
- added top news chars length to admincenter settings
- reordered settings
* admin/smileys.php:
- fixed sql query
* admin/sponsors.php:
- added sponsors administration
- added clickcounter, sort and display choice
- added addbbcode + flags support
- new sponsor image upload system
* admin/squads.php:
- added game option for squads
- added addbbcode + flags support
- fixed bbcode support
- new squad image upload system
- added bbcode output in overview
* admin/static.php:
- accesslevel option added
- security fix
- fixed confirm dialog
- various small bugfixes
- fixed possibility to add two files with the same name
- changed from static files to db saved static content
- added addbbcode + flags support
* admin/styles.php
- added reg exp check for color codes
* admin/stylesheet.css:
- renamed to _stylesheet.css
- new admincenter design
* admin/users.php:
- added ajax usersearch
- various small bugfixes
- fixed sql queries
- ceil instead of for-loop
- users added by admins are now activated
- enhanced status information
- security fixes
- added unknown gender
- fixed possibility of executable code in nicknames and usernames
- added new ban system
- added sort by user status
- enabled png support for avatars and user pics
- fixed the possibility that a user can ban himself
- added check for allready existing nicknames on user creation
* admin/visitor_statistic.php
- added visitor statistics
* admin/visitor_statistic_image.php
- added visitor statistics
* articles.php:
- fixed visit counter
- added multi page function
- fixed sql queries
- bug fixes
- security fixes
* asearch.php:
- added ajax search serverside script
* awards.php:
- fixed squad links
- fixed sql queries
- ceil instead of for-loop
* buddys.php:
- various small bugfixes
- fixed sql queries
- fixed possibility to add yourself or non existent users to your buddy list
* calendar.php:
- various small bugfixes
- fixed wrong league hp link
- security fixes
- fixed new clanwar added message
- removing challenge when the corresponding clanwar gets saved into the calendar
* cashbox.php:
- spelling correction
- show cash box of every squad if cash admin
* challenge.php:
- captcha for unregistered only
- mail scramble protection added
- new error system for formulars
- security fix
- added test for existing squads parameter
- fixed possibility to apply for an event in the past
* checklogin.php:
- added _functions.php include
- various small bugfixes
- php short open tags changed to full open tags
- security fix
- added various news system includes
- added brute force protection + ip ban
- cleanup whoisonline table when a user logs in
- changed session handling
* clanwars.php:
- various small bugfixes
- fixed sorting
- fixed sql queries
- ceil instead of for-loop
- security fixes
- fixed clanwar news
- setted clanwar news language to default language
- available information is prefilled now on new entries
- fixed mysql query for empty showonly value
- increased year generator for dropdowns till year 2014
- explode/implode replaced by serialize/unserialize
- setted clanwars news detail link language to page default language
- fixed empty maplist problems
* clanwars_details.php
- added jpg support for game icons
* comments.php:
- fixed pagelink
- security fixes
- performance optimizations
- fixed sorting
- added mail protection
- removed http:// before user's homepage url on saving
- added http:// before user's homepage url on output
- fixed possibility to make comments when comments are disabled
- mail scramble protection added
- prevented loss of form input text on error redirects
* contact.php:
- captcha for unregistered only
- fixed mail content
- added email adress validation
- added name to mail text
- new error system for formulars
- added contact receiver
- fixed several mail problems
* counter_stats.php:
- expanded stats (oldest/youngest member, avergae age)
* demos.php
- various small bugfixes
- bugfix sorting + paging
- ceil instead of for-loop
- security fixes
* faq.php:
- changed faq sub menu
- added check if a category is selected
- fixed some missing variables (back links)
- security fix
- fixed bbcode support
* files.php:
- fixed mirror bugs
- removed unused code
- added sub-categories
- added usage of $new_chmod for uploaded stuff
- fixed usage of toggle in file descriptions
- fixed rating problems
* forum.php:
- added forum group rights
- fixed user counter/newest member (activated only)
- various small bugfixes
- mail scramble protection added
- security fixes
- ranks fixed
- performance optimizations
- fixed sql queries
- fixed birthday info
- changed mark all topics read behaviour
- added member status displaying at forum bottom
- fixed post/topic counter
- fixed redirection on delete
- fixed not existing post icons
- added check for board exists on new topic
- optimised sql queries
- added forum category filter
- prevent the creation of a shadow topic when moving a topic to the same board it allready is in
* forum_topic.php:
- added forum group rights
- fixed profile links at announcements
- mail scramble protection added
- security fixes
- ranks fixed
- performance optimizations
- bug fixes
- changed mark all topics read behaviour
- added forum category filter
- fixed several mail problems
- fixed preview, notify and sticky problems
* _functions.php:
- added language switch
- made gettemplate() language class compatible
- installfolder-check only while in disabled debug mode
- fixed addslashes problem destroying javascript actions
- code cleanups
- mail scrambler added (spam protection)
- bugfix makepagelink()
- various small bugfixes
- removed is_online()
- added substri_count_array()
- security fixes
- fixed whoisonline bug on shoutbox reload
- fixed whoisonline nickname update
- enhanced gettemplate function to be callable from other places then the root directory
- added new ban system
- added ip ban on brute force attacks
- fixed pagetitle on locked pages
- remove nickname in db from who is/was online
- fixed improper new lines when posting html (no need to write html on one line anymore)
- changed session handling
- several optimizations in the content output functions
- added special js parts replacer
- added additional form input check functions
* gallery.php:
- fixed diashow
- security fix
- fixed layout
- added possibility to activate/deactivate gallery comments
- fixed deletion of pictures (really deleted in the filesystem too)
- added gallery title to template
- several bugfixes
- added groupname "usergalleries" for groupID 0 galleries
* getlang.php:
- added ajax language fetch
* guestbook.php:
- mail scramble protection added
- performance optimizations
- bug fixes
- security fixes
- added redirect to input form on error
- added toggle support
- added addbbcode support to admin comments
- fixed error handling
* html/:
- folder removed (changed from static files to db saved static content)
* images/flags/:
- various flags updated
- added 237 new flags
* images/gallery/large/index.php:
- fixed redirect
* images/gallery/thumb/index.php:
- fixed redirect
* images/games/: