-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.php
1768 lines (1414 loc) · 76.3 KB
/
CHANGELOG.php
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
<?php
/**
* @version $Id: CHANGELOG.php 22952 2012-03-27 00:40:16Z dextercowley $
* @package Joomla
* @copyright Copyright (C) 2005 - 2012 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
/*
?>
1. Copyright and disclaimer
---------------------------
This application is opensource software released under the GPL. Please
see source code and the LICENSE file.
2. Changelog
------------
This is a non-exhaustive (but still near complete) changelog for
Joomla! 1.5, including beta and release candidate versions.
Our thanks to all those people who've contributed bug reports and
code fixes.
Legend:
* -> Security Fix
# -> Bug Fix
$ -> Language fix or change
+ -> Addition
^ -> Change
- -> Removed
! -> Note
-------------------- 1.5.26 Stable Release [27-March-2012] ------------------
-------------------- 1.5.25 Stable Release [14-November-2011] ------------------
-------------------- 1.5.24 Stable Release [17-October-2011] ------------------
30-Sept-2011 Jean-Marie Simonet
+$ Adding ka-GE installation language
19-Apri-2011 Andrew Eddie
# Fixed [#21622] 303 redirections cause page subresources to be reloaded on WebKit browsers (Nicholas Dionysopoulos).
-------------------- 1.5.23 Stable Release [04-March-2011] ------------------
04-Apr-2011 Mark Dexter
# [#25450] Mootools 1.2.4 Squeezebox Problems in MSIE 9
# [#24289] com_mailto Spam Email Relay
# [#22629] Joomla! broken on CGI web servers
03-Apr-2011 Mark Dexter
# [#20234] security string missing on file toolbar.php
# [#23746] Add a system plugin event called onBeforeCompileHead
# [#25090] Improve .htaccess rewrite efficency
# [#21676] Article Manager - Select Author
# [#20423] Warning: realpath() [function.realpath]: Unable to access .../path.php
# [#16605] PHP notice when selecting a menu type
# [#20536] Category Blog Layout - View Article - Editing Article - Click Images - 500 Layout "blog" not found
31-Mar-2011 Mark Dexter
# [#22520] Articles archive years are HARDCODED!!!
# [#25162] *SQL installation issue with TYPE
# [#23053] 1.5.21 admin template params.ini error
# [#23135] Section blog ordering changed in 1.5.22
# [#16149] **PDFs not showing when icon clicked in IE...
# [#25024] Upgrade Geshi to 1.0.8.10
# [#21252] Password reset invalid token
-------------------- 1.5.22 Stable Release [03-November-2010] ------------------
03-Nov-2010 Ian MacLennan
# [#20255] 1.5.17 Session Bug
# [#21538] Empty menu item if menu type contains space or uppercase letter
02-Nov-2010 Jean-Marie Simonet
^ [#22961] Installation language modifications: aa-AA et-EE
^ [#23098] Credits.php update
20-Oct-2010 Ian MacLennan
# [#21489] CHANGELOG.php - segment twice exists
# [#21769] toolbar.content.html.php allow direct access
# [#21466] Backend user list ordering
# [#20256] Message "Database Error: Unable to connect to the database..." should return "500 Internal Server Error"
# [#18997] Fix for JFile::getExt()
-------------------- 1.5.21 Stable Release [08-October-2010] ------------------
-------------------- 1.5.20 Stable Release [18-July-2010] ------------------
-------------------- 1.5.19 Stable Release [15-July-2010] ------------------
15-July-2010 Mark Dexter
# [#21419] Incorrect Joomla! Community Magazine address
^ [#21421] *Credits.php update for 1.5.19
14-July-2010 Ian MacLennan
+ [#21404] New installation language bs-BA
+ [#20984] New installation language ta-IN
14-July-2010 Louis Landry
+ [#21416] Mootools 1.2.4 Upgrade Plugin
02-June-2010 Sam Moffat
! Line ending fix for some XML/HTML files
-------------------- 1.5.18 Stable Release [27-May-2010] ------------------
25-May-2010 Ian MacLennan
# [#20424] Revert issue 19859 (Graceful handling of Apache plugin failures)
! [#19859] Reverted 19859.
-------------------- 1.5.17 Stable Release [27-April-2010] ------------------
26-Apr-2010 Mark Dexter
# [#20219] Upgrade to 1.5.16 breaks PHP 4 compatibility
# [#20239] Update ru-RU installation language
# [#20238] Updating help sites list
# [#20220] en-AU installation ini folder
+ [#20241] Fixed up system tests
# [#20242] Language fix for 20219 PHP 4 issue
25-Apr-2010 Ian MacLennan
# [#20221] Can't Login When Session Handler is None
24-Apr-2010 Mark Dexter
# Reverted [#16506] JFolder::makeSafe removes dot
-------------------- 1.5.16 Stable Release [23-April-2010] ------------------
23-Apr-2010 Ian MacLennan
$ [#20195] Language credit update
$ [#20055] Language bug in "Menus"
# [#20043] JApplication::redirect() using a 301 error code incorrect.
# [#20025] Adding Reykjavik in timezone
$ [#20024] More updates on installation ini files
$ [#19966] New hi-IN installation language
$ [#19871] Missing string in a few installation ini files
# [#19859] Graceful handling of failing Apache plugins
# [#18046] $theURI not correctly set on IIS7 in environment\uri.php
# [#20184] Removal of searchwords from SEF urls to ensure cross platform compatibility
07-Mar-2010 Ian MacLennan
# [#16930] Reverting patch from #16930 because it breaks the installer
05-Mar-2010 Ian MacLennan
$ [#19864] Missing string in is-IS installation ini
# [#18648] News Feeds -> Categories can throw a SQL error when it tries to sort by section_name
# [#18619] Validation error of mod_search
# [#18570] Button select article in back-end ( RTL) ie7 + modal centering
# [#18403] Possible typo in mod_latestnews xml
# [#17762] Mod_login\helper.php: Trying to get property of non-object
# [#17235] SEF URL for contacts gives 404 error
# [#17000] Core related items and other modules non-functional with cache module on
# [#16974] Checking wrong cache field in com_content _loaddata() function
# [#16930] live_site$ in configuration.php ignored by some JS-based functions - breaks joomla 1.5 behind reverse proxy
# [#16506] JFolder::makeSafe removes dot
04-Mar-2010 Ian MacLennan
$ [#19836] New Arabic Unitag installation language ar_AA
# [#19831] Preventing mod_login redirect to display trashed menu items
# [#19798] Undefined variable notice when enabling or disabling a user in com_user
# [#19680] Media manager folder param incorrectly named
# [#19245] Pagination in category blog layout not shown in specific case
# [#18848] Last module position in <select> is with space at end
# [#18683] The "search result Itemid" fix (15780) doesn't apply to beez
# [#18672] Issue with some feeds in release 1.5.15
27-Feb-2010 Ian MacLennan
# [#19816] Adding a missing string in many installation ini, added helpfile listing
# [#19763] _JEXEC check missing from joomla file
# [#19681] Copying menus does not maintain parent child relationship
# [#19655] Poll component save task missing successful results message
# [#19555] Timezone code setting incorrect for 6:30 (Yagoon) and 11:30 (Norfolk) in Global Configuration
# [#19055] Tinymce bug prevents adding the valid id extended element for the anchor tag
# [#19009] Author Alias not properly escaped in Article Manager
# [#18936] Atom feed image url incorrect
22-Feb-2010 Ian MacLennan
# [#17878] Installing modules with upgrade method
# [#18614] Incorrect bracketing in templates/system/component.php
# [#18617] Disabled components still show in the "menu type" tree of com_menus
# [#18612] Pathway error when using php4
# [#17986] A bug causes a space to appear after email links
21-Feb-2010 Ian MacLennan
$ [#19715] Adding Phnom-Penh to UTC strings
$ [#19627] Add sr-YU in installation
$ [#19604] Missing ini string in installation
# [#19435] New caching of com_contact in 1.5.15 results in "Invalid Token"
# [#19405] Improvements to caption
# [#18987] Minor bug in module updater code
26-Jan-2010 Louis Landry
^ Updated copyright notices for 2010
^ Moved testing infrastructure from the /testing/ folder into the tree.
-------------------- 1.5.15 Stable Release [05-November-2009] ------------------
04-Nov-2009 Ian MacLennan
# [#17475] Fixed missing = in patch (parse error)
03-Nov-2009 Ian MacLennan
# [#18050] Reverting router change.
29-Oct-2009 Ian MacLennan
# [#18537] error.php rtl issue
28-Oct-2009 Ian MacLennan
^ Updated CREDITS.php
^ Updated installation language pack
^ Updated help sites
# [#16445] SEF rewrites href urls in editor textarea
27-Oct-2009 Ian MacLennan
# [#16914] Default style for admin backend does not specify text color of input fields.
# [#16609] templates/system/css/template.css not found when using templates/system/component
# [#18493] UTF problems with HTML entities in pathway.
# [#18518] Change in mod_search.ini
# [#18522] Correct version info site/admin for core languages
# [#18481] Emailcloak on image
# [#18430] com_content fails to pass an article reference to onAfterDisplayTitle event handler
$ Added new installer language packs
26-Oct-2009 Ian MacLennan
# [#18245] Implementing templates feature in tinymce
# [#15780] Search result list uses always the Itemid of the default Menu-item
# [#17110] Section/Category List - Table width issue in IE8
# [#17470] Archive filters don't work with cache on + com_content cache optimization
# [#17475] Cache unused by core components
# [#18050] SEF category links lead to article not found
# [#18080] Core - Missing JEXEC Check
# [#18142] utf8_accents_to_ascii() does nothing
23-Oct-2009 Ian MacLennan
# [#11578] Email cloaking does not work properly with non-ASCII characters
# [#16804] Linked image in Beez template jumps in IE8
# [#17259] html not allowed in user confirmation message
# [#17430] Image Title attribute field has different names
# [#17964] Email cloaking. Syntax error in email.php. Patch included.
# [#18246] Tinymce sql correction
# [#18310] Email cloak breaks emails used in scripts
# [#18343] & in page title breaks RSS feed
# [#18349] Missing com_media strings
# [#18353] Information leak - anybody can see installed extensions versions
# Upgrade to Mootool 1.12
19-Oct-2009 Ian MacLennan
# [#18297] Setting ftp fields to not autocomplete
# [#16927] Router fatal error then Itemid is null
# [#18240] Menu item is not opened to new window
$ [#18124] String for JPagination missing in en-GB.ini
# [#18070] Error in Ja_purity and IE8
# [#17692] Email Cloaking on an image
$ [#17618] Localisation of pagination
$ [#17577] Adding Ulaanbaatar in timezones
# [#17559] Change to Beez Template to make it more generic
# [#17231] mod_newsflash doesn't honour alternative read more text
# [#17215] Missing <blockquote> button in TinyMCE 3
25-Sept-2009 Ian MacLennan
# [#16484] Password field changed in configuration.php by Administration > Global Configuration
# [#16804] Linked image in Beez template jumps in IE8
18-Sept-2009 Ian MacLennan
# [#16982] Fixed issue with editor.css files
17-Sept-2009 Ian MacLennan
# [#16982] TinyMCE Configuration Error
# [#17057] TinyMCE strips some image html
# [#17379] Tinymce 3.2.4.1 generates different html breaking caption.js and messing with content filtering
# [#17121] TinyMCE Extended Valid Elements dont work anymore
# [#17043] Multiply instances of TinyMCE on the page
# [#17367] Cannot add or edit content items
# [#17356] Firefox inline spell check doesn't work in 1.5.12 / TinyMCE - suggested fix
$ [#17332] TinyMCE Language file omission for Toggle Editor button
# [#17438] TinyMCE Libary Upgrade - International Users Beware - big changes to language files
16-Sept-2009 Ian MacLennan
# [#18010] Captions don't align properly if image alignment is not set.
# [#18008] Additional PHP 5.3 Issues
11-Sept-2009 Ian MacLennan
# [#17150] Patch to solve PHP 5.3 issues
# [#17432] Missing spinner.gif
# [#17337] Media manager popup is broken in Windows
# [#16919] Results of search - unnecessary quotation marks
# [#16086] Unique menu names now disallow underscores
-------------------- 1.5.14 Stable Release [30-July-2009] ------------------
23-Jul-2009 Gergo Erdosi
# [#17319] Media Manager is broken
# [#17323] TinyMCE Editor $file_browser_callback error in 1.5.13
-------------------- 1.5.13 Stable Release [22-July-2009] ------------------
22-Jul-2009 Ian MacLennan
# [#15548] Plugin content/emailcloak: package oomla
# [#16073] Front End Account Creation does not save 'usertype' in jos_users table
# [#16726] Edit icon does not appear in correct area (buttonheading)
# [#17008] Untranslated error message in Media Manager
# [#17053] 1.5.12 Media Manager showing upload Error
# [#17101] Reversion of changes to Image Button in 1.5.12
06-Jul-2009 Sam Moffatt
# [#17058] Incorrect _JEXEC check breaks TinyMCE JS when using compressed mode
-------------------- 1.5.12 Stable Release [30-June-2009] ------------------
29-Jun-2009 Ian MacLennan
# [#16977] Incomplete language definitions in TinyMCE 3.2
# [#17006] Revert escaping of html in contact miscellaneous information.
28-Jun-2009 Ian MacLennan
+ Added mk-MK installer language pack
27-Jun-2009 Ian MacLennan
# [#17005] Installer SQL shows TinyMCE as version 2.0
-------------------- 1.5.12 Release Candidate [24-June-2009] ------------------
24-Jun-2009 Ian MacLennan
$ [#16950] Lots of missing language strings in TinyMCE v3
# [#16593] JFile::upload() uses chmod 777 in FTP mode
# [#15673] Different time create date and start publishing in beez
# [#16601] Section filter on article manager showing non content sections as well
# [#16607] Mod Newsflash read more link broken with Beez template
# [#16719] JHTML::tooltip quote problem
# [#16753] CSS file is not updated when you edit the joomla
# [#16890] Page title isn't displayed at Default login page
# [#16896] Modified Date disappears in 1.5.11
$ Added language string for Toggle Editor
^ Updated LICENSES.php and CREDITS.php to reflect library license changes and updates
23-Jun-2009 Ian MacLennan
# [#12376] Update to TinyMCE 3.2.4.1
22-Jun-2009 Ian MacLennan
# [#12886] PHPMailer version used in 1.5 does not allow secure connection to SMTP servers
20-Jun-2009 Ian MacLennan
# [#14540] Component Contact at Beez
# [#16686] pagebreak - duplicate title, not respecting show titles
# [#16779] JA_Purity: Anchor tag for Category Title not closed in Front Page Blog Layout
# [#16820] Untranslated strings in Beez template
# [#15727] Module cache, id, Itemid - reverted
14-Jun-2009 Ian MacLennan
# [#16235] mod_feed Tool tip is incorrect
# [#16511] Language date format isn't correct
# [#16595] Category table view output wrong due to error in file
# [#16597] Parameter "Minimum User Level for Media Manager" doesn't work
# [#16742] Wrong link to OpenID login-bg.gif in system.css
09-Jun-2009 Ian MacLennan
# [#12746] Replace PEAR with a GPL compatible alternative
# [#15541] Article Catagory Layout incorrectly sorted
-------------------- 1.5.11 Stable Release [03-June-2009] ------------------
01-Jun-2009 Ian MacLennan
# [#16236] Legacy code in installer premigration system causes unrelated errors
30-May-2009 Ian MacLennan
^ [#16397] helpsites.xml update
# [#16500] offline.php with wrong stylesheet
^ Updated de-DE installer language pack
+ Added gl-ES installer language pack
^ Updated it-IT installer language pack
^ Updated mn-MN installer language pack
^ Updated nl-NL installer language pack
^ Updated sk-SK installer language pack
^ Updated tr-TR installer language pack
30-May-2009 Sam Moffatt
^ Updated CREDITS.php with minor fixes from Ole Ottosen
29-May-2009 Ian MacLennan
# [#15736] Moving $this->escape validation to files which can't be overridden
13-May-2009 Ian MacLennan
# [#13898] There is no translated description for component/module/plugin/etc. after installation
# [#15417] db->updateObject function outdated
# [#15727] Module cache, id, Itemid
# [#16314] PHPDoc Comment for JFactory getDocument method Incorrect
# [#16349] Revert 16122 and Replace sr-ME language files
09-May-2009 Kevin Devine
# [#15909] RSS 2.0 feeds try to turn mailto: links into absolute urls
# [#16211] Atom Link in RSS feed causes validation problems
# [#16007] JFile::getName() loses first character
05-May-2009 Ian MacLennan
# [#15541] Article Catagory Layout incorrectly sorted
# [#15699] Global Configuration Undefined Variable warning
# [#15740] At login use of task=register instead of view=register
# [#15853] Search results pagination broken when two or more search terms, SEF enabled
# [#15912] Error in KEPRI Template, css for icon 'article'
# [#15963] The align attribute in mod_mainmenu helper causes problems with some templates
24-Apr-2009 Kevin Devine
# [#15446] Atom feed does not validate for Contact Category and Weblinks Category Layouts
# [#13890] < Prev and Next > links do not follow SEF rules (duplicate content)
# [#15691] Need better control of who can upload files
# [#16112] Change in Montengrin Language ISO Code
# [#15551] Inconsistent prefix for index.php in com_user #2
# [#15913] Change in installation version display (patch included)
# [#15701] Joomla 1.5.10 breaks package installation due to new installer PHP code
-------------------- 1.5.10 Stable Release [27-March-2009] ------------------
27-Mar-2009 Anthony Ferrara
# Fixed a few issues with the language install packs (double < characters, and a missing file)
27-Mar-2009 Wilco Jansen
- Removed mk-MK language pack in installer
+ Added be-BY, et-EE, gu-IN, mn-MN and ur-PK language pack in installer
^ Updated bg-BG installer language pack
^ Updated CREDITS.php with translators information and other contributors
^ Changed helpsite reference matching installation language file changes
^! Moderate Priority: A series of XSS and CSRF faults exist in the administrator application. Affected administrator components include com_admin, com_media, com_search. Both com_admin and com_search contain XSS vulnerabilities, and com_media contains 2 CSRF vulnerabilities.
^! Low Priority: A XSS vulnerability exists in the category view of com_content.
^ Updated version tags in translation manifest files
25-Mar-2009 Wilco Jansen
^ Activated installation check and updated version files
11-Mar-2009 Ian MacLennan
# [#14515] Atom feed does not validate
9-Mar-2009 Wilco Jansen
# [#15215] Inconsistent prefix for index.php in com_user
8-Mar-2009 Wilco Jansen
# [#15300] Missing translation in pagebreak plugin
# [#15107] Save order enabled and creating random results when active sorting column isn't ordering
# [#14818] filesystem file move doesn't return false when not read- or writable
# [#14827] Page break does not work correctly when tables are included in the page sections. The <div></div> pairs are uneven.
# [#15137] sef plugin does not convert data attribute
# [#9701] Installation of Extensions fails when they include zip files
# [#15044] JArchiveZip::_extractNative() fails to discover zip_open() failure
# [#14525] pagebreak doesn't work correct if using JCE
# [#14558] Pagebreak Plugin Does Not Keep Track of Active Page
# [#14947] Status Module Icon RTL issue
# [#15266] Bad URL after redirect when Register to Read More in Section, Category Menu Items
# [#15362] Not valid XHTML output in com_content and com_contact
# [#15354] com_media loads css files from the backend
# [#15375] Missing language string
# [#15376] Login redirect no longer returns you to your current page if no redirect specified
# [#15233] Search doesn't work with international characters when SEF is enabled
# [#14514] parameter element id of type folderlist and filelist are not correct
# [#13285] Wrong tag-IDs used by openid.js
# [#12119] Changing the module's 'Position' drop-down doesn't change the 'Order' drop-down.
# [#15359] spambots are still able to see registration page even if registration is turned off
# [#14071] menu image alignment
# [#14875] JFolder::folders returns unnecessary warning
# [#14705] Web link Router incorrectly grabs wrong category item
# [#15143] Ampersand in Site Name breaks Position field in vCard
# [#14022] Faulty error handling in JFactory::getXMLParser
# [#14228] Article alias field missing from in category views
# [#14381] Incorrect checked out date format in the back-end
# [#15282] Undefined index HTTP_USER_AGENT in behavior.php
! Big thanks to the Joomla Bug Squad for a weekend of hard work!
1-Mar-2009 Ian MacLennan
# [#12137] Cache Saving module doesn't clear the module's cache data
# [#13111] Inconsistent encoding behaviour - "&" stays as "&" in articles but is converted to "&" in modules
# [#13999] When installing a new module, its title is not translated
# [#14059] Case sensitive image extensions
# [#14286] Template JA Purity: Link all the text in an article if category is shown
# [#14565] Omitted UTF-8 modifier in preg_replace function (com_search)
# [#14758] Article HTML filtering doesn't work if only one Filter group is selected
# [#14795] JInstallerComponent::_rollback_menu() - Error when getting DB Connector
# [#14859] untranslated message installing language files for component
# [#14896] Changes of menu items aren't applied immediately if caching is enabled
# [#14945] Site Title over Joomla's Logo RTL issue
# [#15006] Setting Tooltip Offset Breaks Tooltip
# [#15047] installer.php parseMedia pointing to wrong dir.
# [#15124] Filter Function on Archived Article Doesn't Work
# [#15217] custom <installfile> isn't upgraded on component installation
# [#15237] Loadposition Deletes Dollar signs
# [#14660] Short open tag in admin.categories.html.php
19-Feb-2009 Wilco Jansen
# [#14004] Can't sort categories by "order" column in reverse order
15-Feb-2009 Kevin Devine
# [#15007] Bad Tooltip Help on Section, Category, and Article Alias
# [#14710] User Details not translated
# [#14720] •Untranslated strings in com_contact with patch
# [#14944] Copy Menu Items
# [#11798] Missing l10n in JApplicationHelper::parseXMLInstallFile()
07-Feb-2009 Kevin Devine
# [#14865] Directory Persmissions doesn't list correct tmp or log directories
# [#14767] Menu alias not respecting "active" setting
# [#14857] Cache Plugin Can Cache Incorrect Data]
# [#14948] Little tag error in mod_feed
29-Jan-2009 Kevin Devine
# [#14510] Section List drill down to Category List: Filter doesn't work if global content filters set
# [#14491] JString::rtrim method incorrect
# [#14496] Pagebreak outputs incompatible <BR/> elements (XHTML)
# [#14571] Wrong date in "last updated" in section blog when using beez
# [#14468] user name word translation not correct in register form.
# [#14439] Wrong authorEmail in Rhuk Milkyway
# [#13973] SEF Background Image Fix Breaks Some Javascript ***
-------------------- 1.5.9 Stable Release [9-January-2009] ------------------
09-Jan-2009 Ian MacLennan
# [#14495] Issue 14398 fix doesn't work with SEF off
09-Jan-2009 Wilco Jansen
^ Updated the CREDITS.php file with new list of translators, and some contributers
^ Changed /installation/template/tmpl/finish.html updated link to community site
^ Updated language packs to 1.5.9 (thanks JM for the huge job of coordinating this)
^ Activated installation check
^ Implemented security fixes
! Thanks to all who provided the patches and worked hard on testing and documenting this release
06-Jan-2009 Ian MacLennan
# [#14414] string is unnecessary
# [#14433] Fix for openid transition issues
# [#14434] Typo in Cache Manager
05-Jan-2009 Kevin Devine
# [#14415] Rhuk Milkyway: Some strings unnecessary
# [#14389] String missing in en-GB.com_installer.ini
# [#10680] Blank page if vcard is not enabled in the contact parameters, but selected
# [#13942] The 'modules' view in com_installer does not display author email and url
# [#14070] Article archive pagination
# [#14339] JString bug for strspn()
# [#13949] robots & author metadata lost on copy
# [#12812] 1.5.7. uri.php changes break backend urls if $live_site=Http (note uppercase H)
# [#14394] Poll error message strange
05-Jan-2009 Sam Moffatt
- Removed extraneous com_statistics language file
04-Jan-2009 Ian MacLennan
# [#14408] Weird characters in LICENSES.php
# [#14395] e-mail a friend shows language string not the translation
# [#14374] One english remaining string in mod_search
# [#11871] vCard displays excess spaces
# [#14412] 404 if menu access is set to Public and Contact item to Registered
# [#14402] In Category List, user cannot see what is being filtered
# [#14391] en-GB.com_statistics.ini should be deleted
# [#14410] Outdated link in the installer language file
# [#14317] Cache space not freed
# [#12577] Small change in components/com_banners/models/banner.php
03-Jan-2009 Ian MacLennan
# [#14392] Register to read more should redirect to article, not front page.
# [#14390] Hits Filter in Category List Uses Like Instead of Greater Than or Equal
# [#14313] short php notation in beez as committed in 12798 creates problems on Windows hosting
# [#14360] Spacers JAPurity Translatable
# [#14171] No image
# [#14106] Changing the access for plugins on the plugins list does not work in 1.5.8
# [#13811] Wrong license for PHPMailer in CREDITS.php
# [#13517] CSS errors in rhuk_milkyway/css/template_rtl.css
# [#12023] Aditional Help server is deleted when helper servers are reset
# [#11874] New modules cannot be added when there are no modules in the table for a given client
# [#10840] Cache:filter on view table category doesn't work if cache is enabled
# [#14227] Fix for old dev.joomla.org links
# [#14398] Category list loses column sort when you navigate to new page
01-Jan-2009 Wilco Jansen
! Revert CHANGELOG.php, COPYRIGHT.php, CREDITS.php, INSTALL.php, LICENSE.php, LICENSES.php to webroot
01-Jan-2009 Ian MacLennan
# [#12217] Current OpenID used by joomla does not work with Yahoo - OpenID 2.0 protocol is required
30-Dec-2008 Ian MacLennan
# [#12746] Replace PEAR with a GPL alternative - updated Archive_Tar to relicensed BSD version.
30-Dec-2008 Wilco Jansen
- Removed CHANGELOG.php, COPYRIGHT.php, CREDITS.php, INSTALL.php, LICENSE.php, LICENSES.php from webroot
^ Moved informational php files from previous line to text versions in install/information
! See discussion at http://mail.google.com/mail/#inbox/11e86e6661059074
29-Dec-2008 Ian MacLennan
# [#14308] Spacer Values Not Translatable
# [#14196] Non registered users can print full pdf of registered article
# [#13490] Fulltext search for Uncategorized and Archived articles
# [#11235] RTL feeds PARAM not saved in db + rtl feeds not correctly displayed in Milkyway as well as in Beez/solution included
12-Dec-2008 Kevin Devine
# [#12868] Contact form 1.5.7 not valid XHTML 1.0 Transitional (+solution)
05-Dec-2008 Kevin Devine
# [#13909] strpos error on editing alias menu item
# [#13901] Editor deletes content when default filter is applied: UTF-8 compatibility not enforced with JInputFilter.
26-Nov-2008 Ian MacLennan
# [#13860] Calling JDatabase::Query() or anything invoking JDatabase::Query() more than once causes SQL error
# [#12989] 404 - Contact not found - with dropdown in contact view
24-Nov-2008 Ian MacLennan
# [#13859] Bad file reference in the "Beez" template
# [#13694] Archive Module count Parameter doesnt work//needs tool tip correction
23-Nov-2008 Ian MacLennan
# [#13794] Space between meta keywords gone after saving article
# [#13634] Beez override differences in titles
# [#13570] Missing h1 text-align in rhuk_milkyway/css/template_rtl.css
# [#13499] • Cope with ini files wrongly encoded utf8 with bom - patch attached
# [#13549] typo in sample_data.sql
# [#13761] Media Manager Javascript error: Object doesn't support this property or method [IE only]
# [#13700] Contact image changes for Beez override
# [#13514] Untranslated Strings in en-GB.ini after SVN 11236
# [#12939] JFolder::delete bug when folder contain symbolic links on folders
# [#12841] Toolbar & Button Mediamanager
# [#12730] 'page'-string in plugins/content/pagebreak.php not properly externalized
21-Nov-2008 Ian MacLennan
# [#13770] Remove default filter for super admin users, fix filter whitelist problem
# [#13666] Untranslated Strings in admin/mod_feed
# [#13662] Legacy Plugin - Login Timeout - Refresh
# [#13633] Tooltip language string in com_config
# [#13632] Wrong date Last Updated in Beez
# [#13626] Untranslated strings in com_contact
# [#13617] JMenu getMenu() doc error
# [#13611] Inconsistency in login/logout redirection page of mod_login
# [#13608] Untranslated Strings in com_weblinks
# [#13584] Beez template override for com_search doesn't echo error message
# [#13574] JInstallerHelper class function description mistakes
# [#13542] 'Change Contact Details' link loads wrong page.
# [#13505] onPrepareContent fix for non com_content Components
# [#12925] ja_purity default status for the right modules collapsible function does not work
# [#12887] CSS and XHTML valid error in template JA_Purity///link to css validator broken
# [#12247] query_batch change a sql in a wrong way
# [#12115] Cache: plgSystemCache plugin doesn't respect site/page language
# [#13616] Changes at help screens
18-Nov-2008 Jui-Yu Tsai
# [#13673] Front end article submission auto-populates "finish publishing" date with same date as "start publishing"
14-Nov-2008 Jui-Yu Tsai
# [#13045] Contact category incorrect links
10-Nov-2008 Anthony Ferrara
# Removed Install Check
-------------------- 1.5.8 Stable Release [10-November-2008] ------------------
10-Nov-2008 Anthony Ferrara
# Added security fixes
10-Nov-2008 Wilco Jansen
# Changed version tags of default language file to 1.5.8 (Wohnaiki)
# Change of version file
07-Nov-2008 Sam Moffatt
# [#13590] New installation languages to get into 1.5.8
01-Nov-2008 Ian MacLennan
# [#13470] Missing languagestrings in mod_breadcrumbs.ini
# [#13440] Later versions of cURL break GMail plugin
# [#13432] Description error
# [#13412] typo in en-GB.mod_latestnews.ini
# [#13388] Admin modules xml does not uninstall ini files
# [#13373] Defaut config change to cope with flash10 issue
# [#12854] emailcloak whitespace
30-Oct-2008 Kevin Devine
# [#13326] Beez 'Your Details' page
# [#12696] **SEF plugin does not convert object param and onmouseover/onmouseout rollovers
# [#13405] Further Changes to Welcome to Joomla! Module
29-Oct-2008 Sam Moffatt
# [#13387] Incorrect regexp in JTableUser matches too many fields
28-Oct-2008 Kevin Devine
# [#13313] Archive is not getdate - 1.5.7
25-Oct-2008 Ian MacLennan
# [#12920] **Perform isInternal checking on referer values in User Controller
# [#10954] **Start Publishing is automatically changed upon editing an article when time zone is not set to UTC 00:00
# [#12798] **Beez Html Folder
# [#12372] **Secure password is not allowed when editing account details
25-Oct-2008 Ian MacLennan
# [#13323] **New Welcome to Joomla module and Security Newsfeed module in CPANEL
# [#12885] **Newsfeed Module Cache is broken
# [#13165] please select an item message does not append task to javascript pop up
# [#11798] Missing l10n in JApplicationHelper::parseXMLInstallFile() - patch 2 committed only
# [#11807] mosMenuCheck missing return statement
# [#13297] Missing languagestrings in com_menus.ini
# [#13265] **Remove illegal characters in Article Keywords
# [#11759] **Bug in menu system when changing menu link type
25-Oct-2008 Sam Moffatt
# [#13264] **Untranslated Strings in en-GB.tpl_ja_purity.ini
# [#13262] Untranslated Strings in Unknown file
# [#13253] Untranslated Strings in en-GB.ini
# [#13242] print icon on layout "blog category" as first page
# [#13233] reset button on article selection for menu item doesn't work
# [#13223] Same language string in Section layout of a menu item**
# [#13217] **Error in the increase of hits count when editing article in front end
# [#12878] error language string in mod_feed.ini
# [#12542] **Inconsistent showing of default records in un-install screens (templates/language)
19-Oct-2008 Ian MacLennan
# [#12697] **More sample data changes, including UTF-8 Fixes
# [#12724] **Content Router appends ID to item and is different from the menu (revert 11561)
# [#12859] **Backend: Disabled Admin Menu = javascript error
# [#12864] Issue with JMenu and large sites
# [#12950] **Beez template: The password reset doesn't work at all
# [#13198] *** Temporary users cannot log out
15-Oct-2008 Kevin Devine
# [#13076] **Feed module target attribute not validating
# [#13064] **Problem with mod_related_items Keyword Matching
# [#12550] **nameQuote() mixed order in strpos
# [#12625] ** default_form.php in com_search has onClick on button tag which fails XHTML 1.0 Transitional validation
13-Oct-2008 Ian MacLennan
# [#13164] JFolder::files and JFolder::folders don't function properly when using integral search depth
# [#13152] Component Directories to be completely deleted upon bogus entry into jos_components
# [#13151] Wrong wording in language file
# [#13017] Install language with pdf fonts with both admin and site bug (patch included)
# [#13015] Frontpage blog wrong number of links
# [#12942] A tag of category link is not closed in Section blog view
# [#12602] mod_stats shows wrong time
# [#12533] Missing method in JRecordSet
# [#12424] Correct or Remove Show_noauth parameter from sections module
# [#11707] In category blog layout, edit icon not displayed for user who canEdit if show title is 'No'
# [#11261] Cache: Undefined variable: rows in /administrator/components/com_cache/cache.class.php on line 114
10-Oct-2008 Kevin Devine
# [#12722] STRIPOS
06-Oct-2008 Ian MacLennan
# [#12843] Text 'New ordering saved' cannot be translated in weblinks
# [#12734] Missing language string JA Purity
# [#12031] File Not Found or Compoent Not Found When SEARCH Button is Pressed
# [#12011] E-mail content pop-up window too short in Beez
02-Oct-2008 Ian MacLennan
# [#12855] Misspelling of category in components/com_content/views/category/view.feed.php
25-Sep-2008 Ian MacLennan
# [#12778] Remove commercial newsfeeds from joomla installation packages
# [#12731] Wrong frontpage article after upgrade to 1.5.7
# [#11521] ****Image does not display in Contacts when an image directory is configured
# [#12338] URL: mod_login loses ItemID on redirect
22-Sep-2008 Ian MacLennan
# [10254] Remove brackets around date/time in "Last Updated"
# [12630] Plural/singular issue for Section list
09-Sep-2008 Anthony Ferrara
^ Disabled Installation Check
-------------------- 1.5.7 Stable Release [9-September-2008] ------------------
09-Sep-2008 Wilco Jansen
# Security fixes, thanks JSST!
# Changed version tags of default language file to 1.5.7
# Change of version file
05-Sep-2008 Wilco Jansen
# Enabled installation check
# [12543] pagebreak plugin: undefined variable full
# [12663] Feeds in com_content don't show up more than once when caching is enabled
# [12519] Clean up Outdated Sample Content
# [12480] When a guest uses a registered article view url a 403 or 404 is thrown
31-Aug-2008 Wilco Jansen
# [12039] Cannot override contact list length
# [12481] When saving or cancellig a frontend edit you are redirected to a blank page instead of the article
# [12536] Warnings for Path to Image Folder and Path to Media Folder
30-Aug-2008 Wilco Jansen
# [10175] JRoute::_() and Application Redirect() Causing CGI Error IIS 6
# [10691] Section/Category Blog fills top->bottom instead of left->right
# [10943] Error of menu display according to access right
# [10953] Time zone need to be changed
# [11330] Box Width Parameter in mod_search Has No Effect
# [11621] Warning: strpos() [function.strpos]: Empty delimiter
# [11870] show_noauth problem in 2 module helpers
# [12071] SEO: index and follow meta tag in print view
# [12165] Pagination in com_categories does not respect sectionfilter
# [12167] Show Search Results" Option in Search Component Not Working
# [12204] ja_purity template - site logo text goes under header background
# [12229] Article Order Drop-Down List on Front End Shows Archived and Trashed Articles
# [12259] Help Key Reference Update for Modules: New Screen
# [12276] Selection of name/username doesnt work in mod_login
# [12336] Terms impossible to translate in admin.newsfeeds.php
# [12394] Incorrect colspan in admin mod_latest
# [12425] When a guest tries to view unauthorized content, redirect should be to login not register
# [12426] Polls and Search use the wrong view - IIS 7
# [12432] Category search plugin not working
# [12438] <BR/> tags do not pass html validation
! There where a dozen mismatches in the language files, so not all <br /> tags have been replaced,
new language files for 1.5.7 need to be validated on this issue.
# [12442] JA Purity SVN changes can break backwards compatibility with existing sites
# [12462] Menu item is still locked after closing it
# [12492] Preview an edited artcle does not use template editor.css
# [12055] Archive intro text is cut to 255 characters - causes formatting problems
# [12457] Alias is copied incorrectly, when copying an article
# [12460] $row->getError() all over the shop where $row is not initialized
# [12194] URL: Incorrect SEF URLs for outgoing recommandation e-mails
29-Aug-2008 Charl van Niekerk
# [10458] Pagebreak in article in blog layout does not work - limitstart double usage ( Tim, Arno )
28-Aug-2008 Andrew Eddie
# [12110] Beez Template - Newsflash - Article URL not provided when "Title Linkable" is Yes
# [12033] Menu Separator shows as link instead of plain text when using Legacy Menu Formats
# [12261] textarea parameter type cannot handle more than one line of data
28-Aug-2008 Charl van Niekerk
# [11763] RSS feed produces incorrect publish date ( Hannes )
27-Aug-2008 Toby Patterson
# [9343] Profiling J1.5 framework ( Dalibor, Hannes )
# [11018] TMLSelect makes all items selected when using not numeric keys and selected item is 0 ( Alessandro )
# [11255] JMail class ignores JConfig.sendmail path for sendmail ( Ernie, Jens )
# [11535] Coding error in metadata handling of com_content controller.php ( John )
# [12101] Cache: JCacheStorageFile::gc flawed logic in cache expiry ( Geraint )
# [12146] SEO: User/Developer frontend: $document->setMetadata creates duplicate meta tags. ( Paul, Mickael )
# [12382] XMLrpc client id is to high ( Emil )
# [12461] Cache: can't Clean Cache File with Cache Manager when change Cache Handler ( Akarawuth )
26-Aug-2008 Charl van Niekerk
# [9824] alt tags missing for some img tags ( Gergo Erdosi )
25-Aug-2008 Toby Patterson
# [10265] & not replaced with & in the external links ( Denis, Hannes )
# [10384] Single quote in title is escaped twice when editing an article in frontend ( Arnault, Bill )
# [11115] queryBatch does not log queries in debugmode ( Ian )
# [12441] Street Address is not shown in contacts ( Eduardo, JBS )
24-Aug-2008 Sam Moffatt
# [11970] ja_purity email and print button files misnamed and not used
23-Aug-2008 Wilco Jansen
# [11327] Base path showed in media manager is missing slashes
# [11544] JSite::getParams() doesn't work as expected
# [11561] Section blog resulting breadcrumbs issue
# [12080] System generated RSS feeds not rendering correctly for external URLs
# [12118] Latest version check &help.j.org at Joomla! Help
# [12187] Ja_purity default article layout does not display Edit icon for authors
# [12252] Outdated Links in Welcome to Joomla! and Newsfeed Fixes
# [12268] Multiple issues with Top menu in JA_Purity
# [12399] Copying Newsflash Module in Sample Data results in 500 error and duplicate key for menu table
# [12353] More aritcle links in section blog not working
22-Aug-2008 Toby Patterson
# [#10965] Not all instances of module are deleted when module is uninstalled ( Andrzej and Sam )
# [#11561] Patch: Beez Contact Image, typo in attribute value ( Rene and Elin )
19-Aug-2008 Toby Patterson
# [#12010] Remove confusing error message about language files for extension installations ( thanks Amy && Sam)
13-August-2008 Anthony Ferrara
^ Remove install check
-------------------- 1.5.6 Stable Release [12-August-2008] ------------------
05-Aug-2008 Toby Patterson
# [#10906] Error in JURI::buildQuery if using "param[key]=value" GET parameter
-------------------- 1.5.5 Stable Release [27-July-2008] ---------------------
26-July-2008 Anthony Ferrara
# [#11973] Section Layout chooses existing Category Blog for drill down using SEF URLs
# [#11737] Archive and SEO
22-July-2008 Anthony Ferrara
# [#11682] component login error with SEF
# [#11888] Archive Article Error With Finish Publishing Date
# [#11849] Various problems with com_content router
# [#11875] Item user acces overridden in newsflash module
# [#11744] searching for article-title doesn't work
21-July-2008 Anthony Ferrara
# [#11718] Pagebreak plugin still does not work
# [#11844] SEF Plugin breaks Google Webmaster Tools JS
21-July-2008 Sam Moffatt
# [#11818] JA_Purity : CSS style not correctly apply to menu in Hornav position
# [#11698] Issue with & in Menu Manager Unique Name
# [#10662] Error not warning when there is a submit menu item with the wrong permissions
# [#11895] Wrong overlib for login
# [#11892] Determining Read more Tag
# [#11890] Installing upgrade module results in duplicate module entry
# [#11873] Upgrading components deletes old component entry
# [#11838] Clean up of some Todos
# [#11820] javascript file dtree is corrupt
# [#11717] Double Titles with 1.5.4 upgrade
# [#11409] Category List view does not have a parameter in XML for number of items
# [#10869] newsflash description bad: "random article"?
# [#8889] BEEZ - search ONLY fieldset alignment
17-July-2008 Mati Kochen
# [#10823] mosmsg is ignored - added support in legacy plugin (thanks Ian for code suggestions)
16-July-2008 Alan Langford
# [#11846] Allow "collapse all" on all instances of JPane
15-July-2008 Anthony Ferrara
# [#11839] Contact item, setting the bad word param stops all mail
# [#11731] Wrong languagestring in tpl_ja_purity
# [#11808] Sample data - Promo Books banner incorrect link
# [#11817] JA-Purity Login module using incorrect code for token
# [#11676] fix for Newsflash "read more" links in beez template incorrect
# [#11730] Missing language string in com_content.ini
# [#11760] Another missing language string in com_content.ini
# [#11597] Search filter on Private Messaging Doesn't Find any Messages
# [#11716] Banner using Flash/SWF wrong dimensions
# [#11806] Notice in article selection for article layout menu items
# [#11789] forgot your user name not displayed in other languages
# [#11602] Language file is missing for administrator module mod_feed
8-July-2008 Anthony Ferrara
# Removal of install check
-------------------- 1.5.4 Stable Release [7-July-2008] ---------------------
6-July-2008 Wilco Jansen
# Rollback of language file in joomla_backward.sql
# Included latest language files in installer for 1.5.4
5-July-2008 Andrew Eddie
# [#11075] Minor errors in ACL libraries (reopened)
4-July-2008 Wilco Jansen
^ Change default template back to rhuk_milkyway (all help docs are based upon this template)
4-July-2008 Anthony Ferrara
# Rollback of language file change (accidental removal of 3 strings)
3-July-2008 Ian MacLennan
# [#8369] Issues with Page Title and Menu Item Layouts
# [#10766] table align=right breaks rendering in IE and Opera
# [#11646] Corrects in spelling and grammar for en-GB site
# [#11659] Sorting of modules in New module screen is wrong
3-July-2008 Anthony Ferrara
# [#11647] Corrections (spelling and grammar) to en-GB administrator files (Thanks Ron!)
# [#11648] Corrections to en-GB installer (Thanks Ron!)
# [#11618] acl check incorrect in com_users for block user and email events
# [#11609] Default Article Layout should not have width or colspan="2"
# [#9234] Article Layout menu type does not restrict Categories by Section in Article listbox
# [#11639] OpenID Javascript throws errors causes conflicts with Mootools functions
# [#11627] OnBefore/AfterContentSave Triggers
2-July-2008 Anthony Ferrara
# [#11643] Cannot save menu item for Submit New Article (Thanks Jens!)
# [#11638] SVN Rev.10473 breaks path on JS includes (Thanks Jens!)
# [#11636] [t,297432] htaccess Security Issue
# [#11635] [Security BUG 1.5.3] User redirect spam (Thanks Ian!)
30-June-2008 Andrew Eddie
# [11637] Fix htmlentities in com_modules
28-June 2008 Anthony Ferrara
# [#11583] Updated help screen key refs from doc team (Thanks Chris Davenport)
! Patches provided during the second Pizza Bug and Fun event (28/29 june)
28/29-June 2008 Wilco jansen
# [9027] Search system use keyword "Search..." if the inputbox empty
# [10166] Untranslated String in Calendar tool
# [11249] Set unpublished menu-item as default
# [11407] error of time display module pool
# [11464] Contact router broken on SEF and no Itemid
# [11562] Help screen key reference for Category Manager needs to be variable
# [11600] JURI::root does not honour live_site setting
# [11632] Registration redirects upon successful submission of form back to blank registration form
# [11633] The css for messages in in milkyway is incorrect
! Patches provided during the second Pizza Bug and Fun event (28/29 june)
27-June-2008 Andrew Eddie
^ [11601] Improvement to System Debug plugin
# [10842] [patch] mod_latest doesn't use JHTML::_('date')
# [11610] Date in popular module in administrator not GMT
26-June-2008 Wilco Jansen
# [11190] Unable to delete files with illegal characters
# [11571] Old cache file can't be deleted when cache is turned off
# [11580] Missing translation for timezone Venezuela
# [11463] Dates for votes on poll is not gmt