forked from joomla/joomla-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
1450 lines (1173 loc) · 71.8 KB
/
CHANGELOG
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
0. Metadata
-----------
Copyright: Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
License: GNU General Public License version 2 or later; see LICENSE.txt
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! 3, including alpha and beta versions.
Our thanks to all those people who've contributed bug reports and
code fixes.
Legend:
* -> Security Fix
# -> Issue Fix
$ -> Language fix or change
+ -> Addition
^ -> Change
- -> Removed
! -> Note
24-May-2013 Michael Babker
+ [#31004] Add JTwitter package to /libraries/joomla. Thanks Diana Prajescu
^ [#30985] *New JLayout for edit_associations. Thanks Jean-Marie Simonet
#$ [#30994] Untranslated String. Thanks Jean-Marie Simonet
# [#30974] Fix offline overflow image. Thanks Angelika Reisiger
#$ [#31001] *Missing lang string for Protostar. Thanks Jean-Marie Simonet
#$ [#28081] Smart Search Results Page Displays Wrong Modules
24-May-2013 Jean-Marie Simonet
# [#30689] jQuery not loaded in Isis error page. Thanks Dennis Hermatski
# [#30945] Wrong error when folder creation not possible due to permissions. Thanks Phil Taylor
# [#30367] wrong tooltip display at the joomla BE. Thanks Constantin Romankiewicz and Tobias Zulauf
# [#30536] Allow plugins to add dynamically menu types to the list constructed from XML files. Thanks Beat
^ [#30497] Consolidate JHtml classes to CMS tree. Thanks Michael Babker
22-May-2013 Jean-Marie Simonet
# [#30982] Fast links for item language associations management. Thanks Roberto Segura.
# [#30956] No published field in Contacts Component
$ Adding installation languages: Albanian sq-AL
22-May-2013 Elin Waring
# [#30980] Undefined variable extension. Thanks Roberto Segura
21-May-2013 Jean-Marie Simonet
# [PR #1173] Hotfix for failure on user. Thanks David Hurley.
19-May-2013 Michael Babker
# [#30771] Extension Manager Check Database doesn't handle SQL queries with leading comments. Thanks Mark Dexter
#$ [#30867] More ':' than we need at Mass Mail. Thanks Jean-Marie Simonet
# [#30880] Article Count at beez3. Thanks David Hurley
^ [#30819] Removes unnecessary clearfix divs. Thanks Seth Warburton
# [#30754] Wrong display of the Debug Console (404 Error). Thanks Brian Teeman
^ [#30658] Adds WAI-ARIA Landmark Roles to Protostar. Thanks Seth Warburton
^ [#30918] Code duplication removal for saveOrderAjax. Thanks Elin Waring
# [#30814] Undefind line at isis cpanel. Thanks Tobias Zulauf
# [#30932] Missing variable in gmail authentication. Thanks Janich Rasmussen
^ [#30777] Removes html elements used in the wrong context. Thanks Seth Warburton
^ [#30673] Improving query for similar tags module. Thanks Thomas Hunziker
# [#30695] Duplicate <div class="control-group"> for tags field. Thanks Dennis Hermatski
# [#30500] Show / Hide Filter Field not working in tags layouts. Thanks Mark Dexter
# [#30906] *Batch usage needs strict permissions. Thanks Jean-Marie Simonet
# [#30947] Bugs at the debug console if i select some images (e.g. the offline image at the global configuration). Thanks Tobias Zulauf
^ [#30898] Corrects styling issues with mod_articles_category by removing h tags. Thanks Seth Warburton
# [#30949] Feed module generates empty list for non-existing entries. Thanks Radek Suski
# [#30833] Fixes issues from #29922. Thanks George Wilson
# [#30726] Error when try to save category with tags. Thanks Elin Waring
13-May-2013 Jean-Marie Simonet
$ Updating ko-KR installation language
#$ [#30740] Site name tooltip not translatable correctly
# [#30812] *No Joomla Version is display at isis bottom
^ [#30663] Default Value for the Option Show Sub-menu Items to be Set as Yes. Thanks Mig
# [#30873] *Multilanguage: PHP warning when logging.
08-May-2013 Mark Dexter
# [#30125] Search module does not take into account the 'search only' selected. Thanks Luke Collymore.
# [#30769] Still There are Reference to Joomla! 3.0 Version in 3.1. Thanks Jean-Marie Simonet.
# [#28288] Unnesessary initialiazing of tooltips in category blog. Thanks Dennis Hermatski.
# [#30394] *Javascript translations are not available if caching is enabled. Thanks Dennis Hermatski.
07-May-2013 Mark Dexter
# Revert [#30125] Search module does not take into account the 'search only' selected. Breaks search.
# [#30729] Template Editor does not Display well in FireFox. Thanks Aleksander Linkov.
# [#30691] TinyMCE shows buttons with onclick attribute without space and duplicate class. Thanks Dennis Hermatski.
# [#30125] Search module does not take into account the 'search only' selected. Thanks Brian Teeman.
# [#30797] *Wrapper module url field should be required. Thanks Jean-Marie Simonet.
# [#30017] Problems with calendar pop up in Chrome. Thanks Achal Aggarwal.
# [#30800] Blog item is not rendering intro image. Thanks David Hurley.
# [#30787] Select Tags filter cannot be translated correctly. Thanks Elin Waring.
# [#30431] Removed unused css file: editor_content.css. Thanks Nick Savov.
# [#30869] Incorrect table names used in the #__content_types table. Thanks Elin Waring.
05-May-2013 Michael Babker
# [#30727] A unpublished or deleted tag is still visible in 'List of all tags' menu item. Thanks David Hurley
# [#30744] tag mappings are not deleted after a tag is deleted. Thanks Thomas Hunziker
# [#30566] Tag Items List Layout Background Alternating Color Bug. Thanks Seth Warburton
^ [#30659] Adds html5 elements to Protostar. Thanks Seth Warburton
^ [#30257] Removed colors from Icomoon named icons. Thanks Peter van Westen
^ [#30816] Documentation error. Thanks Achal Aggarwal
^ [#30810] Disable ReCaptcha plugin when Joomla is installed. Thanks Nick Savov
# [#30811] Overrides list does not have any markup. Thanks Roland Dalmulder
# [#30832] Joomla Updater doesn't use the bootstrap styling. Thanks Roland Dalmulder
03-May-2013 Jean-Marie Simonet
# [#30694] Backend toolbar buttons have forbidden attribute href. Thanks David Hurley
#$ [#30805] *Isis: sidebar background colour issue
# [#30103] Cannot delete web site entry for a contact. Thanks Elin Waring
# [#30748] *Multilanguage issue with contacts. Thanks Benjamin Trenkle
#$ [#30788] com_newsfeeds title is inconsequent in the backend.
# [#30784] User profile plugin doesn't save the field inputs after J3.1. Thanks Elin Waring
30-Apr-2013 Jean-Marie Simonet
# [#30488] Wrong default values for weblink icons in layout. Thanks THomas Hunziker.
#$ [#30381] Create Folder button label - Media Manager. Thanks Glenn Arkell
#$ [#30618] *Adding filtering by Unprotected extensions in Extensions Manager=>Manage
# [#29922] Browser Agent Google Chrome on IOS. Thanks Brian Teeman.
# [#30622] Queries not using JDatabase. Thanks Georges Wilson
# [#30774] *SEF plugin issue. Thanks Robert Segura.
#$ [#30737] Incorrect title of the User Note Categories Manager
29-Apr-2013 Jean-Marie Simonet
$ Removing deprecated lang strings for the flash Uploader
28-Apr-2013 Jean-Marie Simonet
$ Adding installation languages : ro-RO and gd-GB
-------------------- 3.1.1 Stable Release [26-Apr-2013] ------------------
26-Apr-2013 Mark Dexter
# [#30702] Only titles display in featured/blogged views when hide intro text is selected.
# [#30681] Error in Database tab in Extension Manager.
# [#30697] Invalid tab end in article edit page. Thanks Dennis Hermatski.
# [#30725] Exception thrown for empty path. Thanks Elin Waring.
# [#30679] Fix two Tags-related API issues. Thanks Elin Waring.
# [#30632] *Menu item Alias required setting. Thanks Jean-Marie Simonet.
# [#29957] Administrator interface dropdown menus not working on tablets. Thanks Denia Si.
# [#30660] Corrects font-file stack order. Thanks Seth Warburton.
# [#30668] *Beez3 missing JHtml::_('behavior.caption');. Thanks Jean-Marie Simonet.
# [#30398] com_tags show "{loadmodule..." when listing items. Thanks Elin Waring.
# [#30495] Type check line 31, TemplatesHelper::getPositions. Thanks Christoffer Rødvik.
-------------------- 3.1.0 Stable Release [24-Apr-2013] ------------------
23-Apr-2013 Mark Dexter
# [#30652] Commit for issue 29916 broke Smart Search indexing. Thanks Don Gilbert.
# [#30639] Hathor Tags issues Tag edit view. Thanks Elin Waring.
# [#30640] Hathor - Not tag field shown in core content. Thanks Roberto Sequra.
# [#30653] Use of undefined DEBUG constant. Thanks Elin Waring.
# [#30603] Tags: Similar Tags Module Shows the same article multiple time. Thanks Thomas Hunziker.
# [#30642] Creating a new Tag based on existing one, using "Save as Copy" appends a number even the new Title of the copy is different from the original. Thanks Ashan Fernando.
22-Apr-2013 Mark Dexter
# [#30654] SQL Error in running smart search indexer. Thanks Elin Waring.
22-Apr-2013 Jean-Marie Simonet
$ [#30655] *TAGS: Wrong constant in en-GB.plg_finder_tags.ini
$ Adding Hungarian hu-HU installation language
21-Apr-2013 Mark Dexter
# Fix incorrect commit for [#30617] *Tags: Discover sql not in sync. Thanks Thomas Hunziker.
21-Apr-2013 Jean-Marie Simonet
# [#30645] *Hathor: Icomoon icons don't show in multiple places
# Fix loading all categories in multilanguage
# [#30637] Error when publishing a child tag of an unpublished parent tag. Thanks Elin
-------------------- 3.1 Beta 5 Release [20-Apr-2012] ------------------
20-Apr-2013 Mark Dexter
# [#30323] tag created iso selected with ajax interface when using keyboard only selection. Thanks Roberto Segura.
# [#30432] Optimize styling for small devices. Thanks Nick Savov.
# [#30533] 'banner position missing in Protostar templateDetails.xml file. Thanks Kevin Griffiths.
# [#30555] JTableContenttype->save() breaks type_alias. Thanks Thomas Hunziker.
# [#30592] Module Class Suffix should be a multiline text area. Thanks Ben Tasker.
# [#30595] Fixing "urls" within TagsTableTag->bind(). Thanks Thomas Hunziker.
# [#30596] Access Level in weblinnks manager is displaying as number. Thanks Elin Waring.
# [#30599] Backward Compatibilty break in JHtmlBootstrap::addPanel and ::startPane. Thanks Yannick Gaultier.
# [#30617] *Tags: Discover sql not in sync. Thanks Thomas Hunziker.
# [#30621] Fix batch issues, metadata issues and improve code quality. Thanks Elin Waring and Mark Dexter.
17-Apr-2013 Mark Dexter
# [#30458] Tags: Fatal Error with 3rd Party Component That Uses Categories. Thanks Patrick Alt.
# [#30588] Fixing Tag view if core_access is not set. Thanks Thomas Hunziker.
16-Apr-2013 Mark Dexter
# [#30584] JUcmContent can't construct from alias / error in install SQL. Thanks Thomas Hunziker.
15-Apr-2013 Mark Dexter
-------------------- 3.1.0 Stable Release [24-Apr-2013] ------------------
23-Apr-2013 Mark Dexter
# [#30652] Commit for issue 29916 broke Smart Search indexing. Thanks Don Gilbert.
# [#30639] Hathor Tags issues Tag edit view. Thanks Elin Waring.
# [#30640] Hathor - Not tag field shown in core content. Thanks Roberto Sequra.
# [#30653] Use of undefined DEBUG constant. Thanks Elin Waring.
# [#30603] Tags: Similar Tags Module Shows the same article multiple time. Thanks Thomas Hunziker.
# [#30642] Creating a new Tag based on existing one, using "Save as Copy" appends a number even the new Title of the copy is different from the original. Thanks Ashan Fernando.
22-Apr-2013 Mark Dexter
# [#30654] SQL Error in running smart search indexer. Thanks Elin Waring.
22-Apr-2013 Jean-Marie Simonet
$ [#30655] *TAGS: Wrong constant in en-GB.plg_finder_tags.ini
$ Adding Hungarian hu-HU installation language
21-Apr-2013 Mark Dexter
# Fix incorrect commit for [#30617] *Tags: Discover sql not in sync. Thanks Thomas Hunziker.
21-Apr-2013 Jean-Marie Simonet
# [#30645] *Hathor: Icomoon icons don't show in multiple places
# Fix loading all categories in multilanguage
# [#30637] Error when publishing a child tag of an unpublished parent tag. Thanks Elin
-------------------- 3.1 Beta 5 Release [20-Apr-2012] ------------------
20-Apr-2013 Mark Dexter
# [#30323] tag created iso selected with ajax interface when using keyboard only selection. Thanks Roberto Segura.
# [#30432] Optimize styling for small devices. Thanks Nick Savov.
# [#30533] 'banner position missing in Protostar templateDetails.xml file. Thanks Kevin Griffiths.
# [#30555] JTableContenttype->save() breaks type_alias. Thanks Thomas Hunziker.
# [#30592] Module Class Suffix should be a multiline text area. Thanks Ben Tasker.
# [#30595] Fixing "urls" within TagsTableTag->bind(). Thanks Thomas Hunziker.
# [#30596] Access Level in weblinnks manager is displaying as number. Thanks Elin Waring.
# [#30599] Backward Compatibilty break in JHtmlBootstrap::addPanel and ::startPane. Thanks Yannick Gaultier.
# [#30617] *Tags: Discover sql not in sync. Thanks Thomas Hunziker.
# [#30621] Fix batch issues, metadata issues and improve code quality. Thanks Elin Waring and Mark Dexter.
17-Apr-2013 Mark Dexter
# [#30458] Tags: Fatal Error with 3rd Party Component That Uses Categories. Thanks Patrick Alt.
# [#30588] Fixing Tag view if core_access is not set. Thanks Thomas Hunziker.
16-Apr-2013 Mark Dexter
# [#30584] JUcmContent can't construct from alias / error in install SQL. Thanks Thomas Hunziker.
15-Apr-2013 Mark Dexter
+ [#30298] Added note form field. Thanks Peter van Westen.
# [#30583] Deprecate SimplePie. Thanks Elin Waring.
# [#29678] null value in column "data" (postgresql). Thanks Michael Babker.
15-Apr-2013 Jean-Marie Simonet
# [#30579] *TAGS: Tags field not displaying tags--Revert changes to the tags API. Thanks Elin
14-Apr-2013 Mark Dexter
# [#30506] Joomla update system erases entire site if downloaded zip package is broken. Thanks Aliaksei Kanstantsinau.
# [#30288] Module Prepare Paramater breaks Cache + Browser Cache + Application Rendering time. Thanks Parth Lawate.
14-Apr-2013 Michael Babker
^ [#30541] Small fixes to batch processing layouts. Thanks Elin Waring
# [#30396] Enabling finder plugins breaks tags saving
# [#29240] Undefined property: JSite::$registeredurlparams. Thanks Mark Stanton
# [#30282] Joomla3.0.3 + PostgresQL -- User Registration Problem -- Database query failed -- column "sendemail" does not exist. Thanks George Wilson
+ Database schema for SQL Server adding tags support
# Fix incorrect lft/rgt values in #__menu table for new installs
# Modify queries in tags code to support SQL Server
# [#29685] extensions manager, discover fails with: "JLIB_DATABASE_QUERY_FAILED SQL=INSERT INTO "XXX_extensions"" (postgresql). Thanks Viet Vu
13-Apr-2013 Mark Dexter
# [#30560] Tagged Item menu options Child Tags always saves as Include. Thanks Elin.
# [#30559] 'joomla_310.ddfre_updates' doesn't exist
-------------------- 3.1 Beta 4 Release [12-Apr-2012] ------------------
12-Apr-2013 Mark Dexter
# [#30523] Fix Tag Batch Creation and Tag Library Cleanup. Thanks David and Elin.
# [#30553] jos_contentitem_tag_map error.
12-Apr-2013 Jean-Marie Simonet
# [#30538] Joomla Update Options button displays even if you don't have permission. Thanks Mark Dexter
# [#30532] Extension Manager -> Database not displaying Other Information tab. Thanks Mark Dexter
$ [#30511] Capitalise Custom output title (en-GB only). Thanks Brian Teeman
# [#30537] Menus with default view in URL and sub-tasks are missing in other defined attributes and do not display correctly in menu type input in backend. Thanks Beat
# [#30446] Fix Strict warning 'Attribute already exists'. Thanks Piotr Konieczny
# [#30539] *Memcache cache time issue. Thanks Ofer Cohen and sajal soni
# [#30154] Allow ability to upload file (eg: profile picture) through com_users registration view. Thanks Cy Lee
11-Apr-2013 Jean-Marie Simonet
#$ [#30534] Missing Help Button in Joomla! Update component. Thanks Mark Dexter
10-Apr-2013 Mark Dexter
# [#30466] Tags: Not shown in contacts. Thanks Peter Bui.
08-Apr-2013 Michael Babker
# [#29916] MySQL connections are not closed. Thanks Ian Goldstein
# [#30508] Fixed typo $text = $text = '..';. Thanks Piotr Konieczny
# [#30504] List All Tags doesn't have pagination. Thanks Mark Dexter
# [#30505] Weblink module ignores end publishing date. Thanks Thomas Hunziker
# [#30507] *Edit contact display issue with editor. Thanks Jean-Marie Simonet
08-Apr-2013 Jean-Marie Simonet
$ Adding installation language pt-PT
# [#30503] *Tags :can't save Compact Layout in Tags Component Options
07-Apr-2013 Michael Babker
^ [#30502] Replace use of JRequest in com_media
# [#30489] *Regression: Menu Type UTF8 Alias prevents display in Menu Items Manager in J3
^ [#30499] Duplicate "btn" class in login module button. Thanks Thomas Hunziker
# [#30041] Use of '/' not being handled well on Windows Servers. Thanks Parth Lawate
# [#30054] Catchable fatal error: Object of class stdClass could not be converted to string in /plugins/system/debug/debug.php on line 303. Thanks Ryan K.
07-Apr-2013 Jean-Marie Simonet
# [#30226] *TAGS: Getting rid of all aspects concerning lang associations
06-Apr-2013 Mark Dexter
# [#30453] Tags: Pagination not working when linking to a tag.
# [#30486] *Banners Manager:Banners and Banners Manager:Clients Status filter issue. Thanks Jean-Marie Simonet.
# [#30480] com_contact error in admin->view->contacts search "author:xxxx". Thanks Brent Cordis.
# [#30481] Missing space between icon-cog and caret in featured view. Thanks Thomas Hunziker.
# [#30250] Upgrade jQuery from 1.8.1 to 1.8.3. Thanks George Wilson.
# [#30046] Update SQLSRV with platform fixes. Thanks David Hurley.
05-Apr-2013 Jean-Marie Simonet
# [#30416] duplicate alias in banner manager on pressing save as copy
04-Apr-2013 Mark Dexter
# Reverting [#30430] Severe bug with "com_content" component routing.
04-Apr-2013 Jean-Marie Simonet
# [#30454] Tags: Adding Tags via Batch function replaces all previous tags. Thanks David and Elin.
# [#30463] Missing closing div in compact tag layout. Thanks Thomas Hunziker and Constantin Romankiewicz
# [#30464] ACL Undefined variable error in contentadministrator.php on line 112. Thanks Constantin Romankiewicz
# [#30062] Base Item option in mod_menu has no effect [regression]. Thanks René Alain Erichsen
# [#30422] Tags drill down incorrectly finds match to multi-tag tagged items menu item. Thanks Mark
# [#30210] Undefined index errors by using the style 'beezTabs' at an beez template. Thanks Constantin Romankiewicz
# [#30444] Newfeeds Hide icon wrong colour
# [#30450] Remove moduleclass suffix from <input> and <button> elements in mod_search. Thanks Thomas Hunziker
# [#29377] Image select. Thanks Constantin Romankiewicz
# [#29961] RAW filter is missing for JInput. Thanks Cedric Keiflin
# [#30427] Remove 1.5 html methods from com_newsfeeds. Thanks Elin
# [#30430] Severe bug with "com_content" component routing. Thanks sajal soni and Elin.
03-Apr-2013 Jean-Marie Simonet
# [#30349] Cleaned up use of database & query objects. Thanks Peter van Westen and Michael Babker
-------------------- 3.1 Beta 3 Release [30-Mar-2012] ------------------
29-Mar-2013 Michael Babker
# [#30391] Fixes array not being initialized. Thanks Peter
# [#30317] Synch session check bug fix from platform. Thanks Elin
# [#30419] using foreach with nonarray in com_finder's feed view. Thanks Elijah
^ [#30426] Sync HTML package to the Platform
^ [#30297] Changed MooTools to jQuery based color picker. Thanks Peter
^ [#30425] Remove duplicated filterText() methods
# [#29551] Fixed list_price and sale_price. Thanks Gabriele
# [#30076] Pagination does not work for components with more than one administrative view. Thanks Ram
# Incorrect field names used in JTableCorecontent (discovered implementing unit tests)
29-Mar-2013 Mark Dexter
# [#30205] findmanifest should prioritize main folder manifests. Thanks Roberto.
# [#29680] JLIB_DATABASE_QUERY_FAILED when upgrading to 3.0.2 (Postgresql: invalid input syntax for integer). Thanks Pierre-Louis Bonicoli.
# [#30107] Redirect plugin needs to be disabled by default. Thanks Ram Tripathi.
29-Mar-2013 Jean-Marie Simonet
# [#29709] Imposed translation on menu description. Thanks Marco and Brian.
28-Mar-2013 Jean-Marie Simonet
# [#30415] *Multilanguage 3.1: SIngle article display does not filter correctly author contact per language.
$ Updating installation file: ckb-IQ.ini
# [#30388] Routing on the compact list tagged items layout, default tagged items layout and similar tags module. Thanks Mark.
# [#30410] Notice: Array to string conversion in Tags View. Thanks Mark
# [#30414] Pagination limit not changeable in com_redirect. Thanks Constantin
# [#30406] Set state to unpublished when save2copy.
27-Mar-2013 Mark Dexter
# [#30405] Warning in compact tag view when images is empty.
27-Mar-2013 Jean-Marie Simonet
# [#29319] SEF plugin gives wrong canonical url (of category, not from article). Thanks Rouven and Mark
# [#30380] Joomla 3.1 should *not* suggest to use "admin" as the default admin username. Thanks Phil
# [#30384] *TAGS: "Compact List of Tagged items" menu item issues in multilanguage
# [#30377] Add a tag filter to the sidebars in content managers. Thanks Elin
# [#30355] Tagged item list is showing unpublished, trashed and archived items. Thanks Elin.
# [#30389] List All Tags Not Routing to Single Tag Menu Item + . Thanks Mark.
$ [#30402] Clarification of tags description (en-GB). Thanks Brian.
$ [#30397] Correct en-GB grammar in installation. Thanks Brian.
# [#30329] Missing tags feed and related items. Thanks Elin
# [#29165] Sort table of articles by featured is missing. Thanks Ram
26-Mar-2013 Jean-Marie Simonet
$ Updating installation ini files: pt-BR, ckb-IQ
26-Mar-2013 Michael Babker
# [#28972] Smart Search: suggestions are not filtered by current language
^ [#30104] Messages close button in Isis. Thanks Mario
# Undefined variable in JSchemaChangeitemPostgresql (discovered via unit test implementation)
25-Mar-2013 Michael Babker
# [#30375] When state is changed in a list view it isn't changed in core_content
# Incorrect field names used in JTableContenttype (discovered implementing unit tests)
# [#30382] Fatal error in mod_weblinks. Thanks Elin
^ [#30142] Add optional class param to accordion slider. Thanks Anderson
- [#30387] Remove compact.xml. Thanks Elin
24-Mar-2013 Mark Dexter
# [#30223] TAGS: Missing 'Help' Button in Toolbar.
# [#30366] Help Screens, key wrong, missing or not created correctly.
# [#30335] Updated Front-end Tags Layout. Thanks David.
24-Mar-2013 Michael Babker
+ [#30318] Pull in media wiki package from platform. Thanks Elin
^ [#30356] Update JImage to latest platform version. Thanks Don
# [#30266] Array to string conversion in smart search. Thanks Edgars
# [#28978] Smart search (com_finder) - problem when using "Allow Empty Search". Thanks Valentin
# [#30338] Wrong contact items publishing state from Contact details > state. Thanks Piotr
+ [#30369] Pull in OpenStreetMap package from the platform. Thanks Elin
+ [#30364] Add UNION ALL feature from platform. Thanks Elin
^ [#30180] argument three in phpdoc should be the variable name. Thanks Alexander
^ [#30365] Fix code style in admin modules: mod_login. Thanks Javier
# [#30260] Fix for Undefined index: custom_position. Thanks Peter
^ [#30363] Fix code style in admin modules: mod_logged. Thanks Javier
# [#29353] Smart Search Module Not Using Selected Filter. Thanks Sam
# [#30214] JLog::add in JFolder::create logs erroneous error messages
^ [#30286] Corrections to SQL Server DDL. Thanks Sam
24-Mar-2013 Jean-Marie Simonet
# [#30234] Route work classes for Tags. Thanks Elin
23-Mar-2013 Jean-Marie Simonet
# [#30361] Chosen minified and un-minified versions are different. Thanks Roberto
# [#30348] Popular Tags Module showing multiple copies of links. Thanks Elin
# [#30351] State and language filtering not presesnt in Similar Tag module. Thanks Elin.
22-Mar-2013 Jean-Marie Simonet
$ Updating Installation ini files: he-IL, nl-NL
21-Mar-2013 Michael Babker
^ [#30319] Accessibility fixes to JForm Platform Synch. Thanks Elin
^ [#30353] Clean up left over debugging. Thanks Elin
21-Mar-2013 Jean-Marie Simonet
# [#30340] Fix regression in Similar Tags Module. Thanks Elin
$ Duplicate lang string +
# [#30320] *Deleted Tagged items are not deleted from the map table and core_content table. Thanks Elin
# [#30346] *Contact creator does not include default language "All" for the contact created
# [#30330] *Correcting alignment of metadata labels in Category edit
# [#30339] Component Update Info URL - open in new tab. Thanks Glen
-------------------- 3.1 Beta 2 Release [20-Mar-2012] ------------------
20-Mar-2013 Mark Dexter
# [#30326] Cannot add position in Module Manager. Thanks Roberto Segura.
# [#30314] Move to new JFeed. Thanks Elin.
# [#29520] Cannot add new menu item. [qlsrv]. Thanks Cliff Galiher.
20-Mar-2013 Jean-Marie Simonet
# [#30333] *TAGS: Notice when entering 2 tags in a tags menu item. Thanks Roberto
# [#30328] AJAX field improvements/fixes. Thanks Roberto
# [#30304] Cant add fields to the category form using a plugin. Thanks all.
# [#29734] Joomla Newsfeed problem. Thanks Tessa
# [#30327] PHP Notice using new layouts (from pull request 814). Thanks Elin.
19-Mar-2013 Jean-Marie Simonet
$ Missing strings in com_tags frontend
18-Mar-2013 Jean-Marie Simonet
# [#26860] A Contact name *must not* be unique. Thanks Christophe and Janich
# [#28874] Registration activation email links. Thanks Marco
$ Updating Installation ini files: af-ZA, eo-XX, es-ES, pl-PL, uk-UA
17-Mar-2013 Michael Babker
^ [#30262] Add PostgreSQL schema for tags, sync with MySQL, update script additions
+ [#30251] Add single tag feed view. Thanks Elin
# [#30256] Error in field mapping for contact. Thanks Elin
#+ [#29677] robots.txt in updates. Thanks Mark
^ [#30311] Move code from tag model to tags class. Thanks Elin
17-Mar-2013 Jean-Marie Simonet
# [#30121] Save as copy does not work in com_weblinks, com_contacts, com_newsfeeds. Thanks Lemings
# [#30267] *Modifying constant in logged in module (back-end)
# [#30190] allow string-based input fields to use the "multiple" attribute. Thanks Randy.
# [#30305] Correcting the similar tags module. Thanks Elin
# [#30264] AJAX field for tagging. Thanks Roberto
# [#29810] File deletion issue. Thanks Elin
# [#28803] Bug in com_contact. Thanks Ben
# [#28171] Com_content category view incorrect ordering of "featured" articles. Thanks Christophe Demko
16-Mar-2013 Michael Babker
# [#30259] Added (min) height to table cells with context. Thanks Peter
^ [#30258] Added purge to find/update methods. Removed purge buttons. Thanks Peter
^ [#29295] Show Correct Meta Titles in Joomla Admin for better usability. Thanks Parth
+ [#28924] Add SQL Server subclass for FinderIndexer
^ [#30083] Update PHPMailer to 5.2.3
+ [#30222] Add dateAdd method and implement
# [#30248] Show Intro Text = Hide currently has no effect in Featured and Category menu items. Thanks Matt
^ [#24792] onContentPrepareData event is not implemented in all components generating forms to allow manipulation of the form data. Thanks Niels
+ [#29891] Begin using reusable layouts
16-Mar-2013 Jean-Marie Simonet
#$ [#30231] *TAGS: does not filter on language. Thanks Elin
# [#30283] *Missing filter field parameter for contacts, newsfeeds, weblinks List All Categories menu items + error in Article categories menu item
$ Updating Installation ini files: et-EE, fi-FI, ug-CN, zh-cn
+$ [#27945] Hide Subcategories text. Thanks Aka.
+ [#30230] JPlugin autoloadLanguage property. Thanks Elijah
# [#29319] SEF plugin gives wrong canonical url (of category, not from article)
#$ [#29563] Error msg when an invalid back-end template is selected. Thanks Lukas
15-Mar-2013 Jean-Marie Simonet
# [#30261] Contact tagging not working and contact notice in front end. Thanks Elin
14-Mar-2013 Jean-Marie Simonet
# [#30265] Make options in the content type field translatable.
$ Updating Installation ini files: bs-BA, sy-IQ
13-Mar-2013 Jean-Marie Simonet
$ Updating Installation ini files: de-DE, fa-IR, ko-KR, sk-SK, vi-VN
# Updating version for installation language xml
12-Mar-2013 Jean-Marie Simonet
# Merging platform strict standards cache issue. https://github.com/joomla/joomla-platform/pull/1710
$ [#30270] Wrong string. Thanks Elin
10-Mar-2013 Jean-Marie Simonet
$ Updating Installation ini files: ca-ES, hr-HR.
09-Mar-2013 Michael Babker
# [#30221] JTags method declarations are not optimal
+ [#30242] Add class to TAGs layout in order it looks like a bootrstap label
08-Mar-2013 Michael Babker
^ [#29803] Encourage proper use of JHtml APIs dealing with scripts and stylesheets
^ [#30120] Rename and move classes in the install library from Platform to CMS
+ [#30102] Update to Platform version code. Thanks Elin
+ [#30243] Add TAGs in front end articles single view in BEEZ3. Thanks Javier
# [#29717] Typo in Formbehavior::Chosen. Thanks Thomas
# [#30241] Horizontal scroll appears when in edit articles. Thanks Javier
# [#29266] Uncaught exception in user profile when entering string for birth date. Thanks Aleksander
08-Mar-2013 Jean-Marie Simonet
$ Missing string for com_tags
$ Updating Installation ini files: ar-AA, bg-BG, id-ID, ja-JP, lv-LV, sv-SE, sw-KE, tr-TR
07-Mar-2013 Michael Babker
+ [#30237] Set minimum type_id. Thanks Elin
07-Mar-2013 Jean-Marie Simonet
#$ [#30220] TAGS - language string typo. Thanks David. + some.
# [#30216] *Normalising batch for com_users manager in Isis
# [#30227] Missing files on en-GB.xml
-------------------- 3.1 Beta 1 Release [07-Mar-2012] ------------------
06-Mar-2013 Mark Dexter
+ [#29855] Add a component for creating and managing (nested) tagging in content components. Thanks Elin Waring!
+ [#29822] Show logs in debug console. Thanks Elijah Madden!
- [#28574] Remove the GeSHi plug-in.
05-Mar-2013 Jean-Marie Simonet
^ [#30085] Refactor installation to use new application and MVC classes. Thanks Michael
# [#30203] * Misrepresented Debug Console at the joomla errorpage.
+ [#29770] com_config component missing triggers on save. Thanks Nicholas Antimisiaris
$ Updating Installation ini files: be-BY, da-DK, fr-FR, it-IT, mk-MK, nb-NO, ru-RU, sr-RS, sr-YU, ta-IN, th-TH, zh-TW
02-Mar-2013 Jean-Marie Simonet
# [#30189] * [#30157] did not take into account apostrophies in lang strings values
# [#30186] Weblinks module fails
01-Mar-2013 Jean-Marie Simonet
# [#30172] *Moving the helper getAssociations() to the cms library. Thanks Roberto and Harald
# [#30182] *Correcting some hathor display.
28-Feb-2013 Jean-Marie Simonet
# [#30100] Plugins ordering broken when search filter is populated. Thanks Jurian.
# [#30030] Beez index.php. Thanks Angie.
# [#30115] Component Options are not a Modal Pop Up Window - Help screen Language Keys needed. Thanks Mark
# [#29252] Media manager Directory doesn't update while browsing folders. Thanks Piotr
26-Feb-2013 Jean-Marie Simonet
^$ [#30157] *Bootstrapping tabs in administration (big patch)
# [#30159] *Improving multilanguage status module
+ [#30101] Port over JPluginHelper::getLayoutPath() and use it to customize pagenavigation plugin markup. Thanks Roberto and Michael.
# [#29396] isis - article editing. Thanks Artur
22-Feb-2013 Jean-Marie Simonet
# [#30126] *wrong alternate when using associations in multilanguage. Thanks Benjamin
# [#30133] Duplicate quotes in beez3 category blog override. Thanks Babs
#$ [#30001] Menu and Article Associations does not work under Global Cache
16-Feb-2013 Jean-Marie Simonet
# [#29261] Admin template "super-patch". Thanks Michael
14-Feb-2013 Jean-Marie Simonet
# [#30095] *Select menu type modal corrections for Hathor and Isis RTL
# [#29786] JHtmlBootstrap tabs broken. Thanks Tim Kramer.
12-Feb-2013 Mark Dexter
# [#30066] Minor update releases not showing by default for new 3.0.x installs. Thanks Michael.
12-Feb-2013 Jean-Marie Simonet
# [#30074] *Front end edit button missing in category blog
# [#30087] Second scrollbar at the media manager (isis). Thanks Constantin
# Added the error file in the Protostar template xml. Thanks Miguel Angel
11-Feb-2013 Jean-Marie Simonet
# [#30056] * Icomoon issue with some character & More RTL compatibility for Isis template. Thanks Mohammad.
+ [#30086] * Improving Edit Assignment in Template Edit style
# Reverting [#29377]
10-Feb-2013 Jean-Marie Simonet
+$ Adding af-AZ to installation languages
09-Feb-2013 Michael Babker
# [#29970] Robots.txt check url no more working. Thanks Brian
# [#30049] Move rules for autoloading. Thanks Elin
08-Feb-2013 Jean-Marie Simonet
# [#29946] Fixing extension install from dynamic URLs. Thanks Thomas
# [#29737] If a user is blocked while logged in, he or she stays logged in. Thanks Alexander
# [#29736] Bootstrap carousel undefined method JHtmlBootstrap::_getJSObject in bootstrap.php. Thanks Michael and Robert.
# [#30063] Disabled template positions shown in module available positions. Thanks Roberto
#$ [#30079] * Improving cookie handling in languagefilter plugin
^+ [#29896] Switch JHtmlIcons to render with JLayout, update quickicons module to suit. Thanks Michael.
06-Feb-2013 Jean-Marie Simonet
# [#29965] Add pagination in COM_SEARCH component
#$ [#30057] *Implementing search and pagination in Menu Manager: Menus
#$ [#30078] *Adding Note when language pack version is not equal to Joomla version
# [#29377] Image select. Thanks Angelika and Niels
-------------------- 3.0.3 Stable Release [4-Feb-2013] ------------------
03-Feb-2013 Jean-Marie Simonet
$ Updating installation lang file: he-IL
02-Feb-2013 Jean-Marie Simonet
$ Updating installation lang file: et-EE, zh-CN
$ Updating installation lang file: fa-IR, nb-NO
01-Feb-2013 Jean-Marie Simonet
$ Updating installation lang file: nl-NL
31-Jan-2013 Jean-Marie Simonet
$ Updating installation lang file: ru-RU
# [#30043] *Correcting a few Hathor css issues
$ Updating installation lang file: bs-BA, he-IL
# Updating en-GB to 3.0.3
$ Updating installation lang file: sw-KE
30-Jan-2013 Mark Dexter
# [#27709] Saving in backend very slow when many user groups. Thanks Elin.
# [#29705] blank login page J3.x beez3.
30-Jan-2013 Jean-Marie Simonet
$ Updating installation lang file: bg=BG, pt-BR, sy-IQ
29-Jan-2013 Mark Dexter
^ [#29776] com_media/plugin interaction. Thanks Elijah Madden.
# [#30007] Fix broken module installation in Postgresql because of NULL constraint. Thanks Elin.
+ [#30006] Add totally new classes and methods from the platform. Thanks Elin.
# [#30000] Division by 0 problem in JCrypt. Thanks Elin.
# [#29999] Fix fatal error in JInstallerFile::uninstall(). Thanks Matias Griese.
# [#29417] sendMail automatically adds sender as replyTo. Thanks Roberto Segura.
# [#28714] Authentication - Gmail: Apply Username suffix does not allow user to login with suffix already applied. Thanks Janich Rasmussen.
# [#29345] MySQLi does not display SQL errors messages anymore. Thanks Jérôme Glatigny.
# [#29845] Joomla 3.0.2 Back-end Performance Issue with Item Associations (large #__associations table). Thanks Gary Mort.
28-Jan-2013 Jean-Marie Simonet
# [#30026] *Reverting parts of tracker #29875 which breaks container-fluid class in Protostar- regression
#^ [#29997] Email validation fails with longer top level domains. Thanks Elin
26-Jan-2013 Jean-Marie Simonet
# [#30028] Ordering is not working in Beez3 article Category List. Thanks Roberto
$ Updating installation lang file: be-BY, fi-FI, ko-KR, pl-PL
# [#30031] *Notice: Undefined index: title in /plugins/content/pagebreak/pagebreak.php on line 197. Thanks Bernard
25-Jan-2013 Jean-Marie Simonet
# [#29998] Problem with grid sort. Thanks Zhevron
# [#30021] *Wrong parameters for Articles Category List layout
# [#30023] Faster sorting for languages. Thanks Gary.
# [#28841] Username modification in frontend (Profile Edit) is not saved. Thanks Jisse Reitsma
24-Jan-2013 Jean-Marie Simonet
$ Updating installation lang file: aa-AA, de-DE, es-ES, hr-HR, lv-LV, ug-CN, vi-VN, zh-TW
# [#30018] *Isis calendar display issue
23-Jan-2013 Jean-Marie Simonet
# [#29994] Clear tooltips at template hathor
# [#29995] No language tooltip at the Joomla Login. Thanks Tobias.
# [#30015] *Isis tooltip text is always centered
22-Jan-2013 Jean-Marie Simonet
# [#29960] Correct language specification in components' XML files. Thanks Alex B.
# [#29907] *Protostar template does not display page break tab feature in a page.
21-Jan-2013 Jean-Marie Simonet
$ Updating installation lang file: id-ID, sr-RS, sr-YU, sv-SE, sw-KE, uk-UA
21-Jan-2013 Jean-Marie Simonet
$ Updating installation lang file: ca-ES, ckb-IQ, da-DK, fr-FR, it-IT, ja-JP, mk-MK, sk-SK, ta-IN, th-TH, tr-TR
19-Jan-2013 Jean-Marie Simonet
# [#29987] Code Style Part 2. Thanks Elin
19-Jan-2013 Jean-Marie Simonet
# [#29989] *Media manager can't upload is memory_limit is set to -1
18-Jan-2013 Jean-Marie Simonet
# [#29979] Codestyle pass 1. Thanks Elin.
^ Updating copyright
# [#29952] template manager pagination broken. Thanks Yannick
17-Jan-2013 Jean-Marie Simonet
#$+ [#29897] *Multilanguage: adding items associations in remaining core components. Thanks Benjamin
# [#29959] *Show Create Date global article option does not work when it is the only option selected
# [#29954] *RTL: Wrong display of Subcategories titles in Content Category Blog and Categories menu items
16-Jan-2013 Jean-Marie Simonet
# [#29962] *303 when not using URL Language code in multilanguage - again. Thanks Yannick
15-Jan-2013 Jean-Marie Simonet
#$ [#29941] *User Profile frontend tooltips same as backend ones
# [#29289] *No admin private message when an author submit a new content in frontend
# [#29933] *'Article' string above the TOS article and print icon not working with Protostar
# [#28778] Incorrect Rendering of Breadcrumb Trail for Home Page Sub-Items. Thanks James and Peter
13-Jan-2013 Jean-Marie Simonet
# [#29913] *Com_content feed read more links broken. Thanks Jurian
# [#29908] Allow use of text instead of icons in the login module. Thanks Elin
# [#28577] User Notes Search not working. Thanks Panayiotis
12-Jan-2013 Jean-Marie Simonet
# [#29469] CodeMirror looks a little bad. Thanks Elijah
# [#28895] Missing closing </div>. Thanks Janich
# [#29921] *Com_content category list filter field wrong Options
# [#29923] *Ordering in Featured Articles doesn't work with isis administrator template
# [#29927] *User Profile Plugin - Required TOS field not enforced
# [#29929] mod_custom with wrong client attribute Thanks Martin
10-Jan-2013 Jean-Marie Simonet
# [#29917] *Beez3 RTL wrong display of items in category list
# [#29904] *With plugin Language Filter enabled, user articles parameter in frontend shows all articles
08-Jan-2013 Jean-Marie Simonet
# [#29914] *Login module wrong display in beez3 RTL
# [#29906] *Viewing Access Levels order numbering is not shown
06-Jan-2013 Michael Babker
# [#27699] Only text gets passed to content events in blog view. Thanks Peter
05-Jan-2013 Jean-Marie Simonet
# [#29905] Issue 29895 broke weblinks categories. Thanks Mark
# [#29903] Fix a reference in jDatabaseDriver. Thanks Elin
# [#29842] Display error by the contactform with IE 8 and 9. Thanks Constantin.
03-Jan-2013 Michael Babker
# [#29875] Protostar invalid class names for itemid, layout and task. Thanks Cristina
# [#29895] Strict errors in categories models. Thanks Elin
# [#29862] *Filter_field Option missing in category list layout for Contact, Newsfeeds, Weblinks. Thanks JM
# [#29887] *Disable System redirect breaks 404. Thanks Yannick
03-Jan-2013 Mark Dexter
# [#29743] heading menu type renders bad html code. Thanks M Cedric Keiflin.
[#29865] JLayoutFile keeps rendering same layout. Thanks Yannick Gaultier.
03-Jan-2013 Jean-Marie Simonet
# [#29836] *Weblinks, Newsfeeds, Contacts Search Filter (frontend). Thanks Glenn Arkell
02-Jan-2013 Jean-Marie Simonet
# [#29870] *Beez3 wrong messages display
# [#29217] *Status column missing in weblinks mobile view. Thanks Tim
# [#29691] Smart Search autocomplete.js issue. Thanks Viet
# [#27903] invalid call to parent::getStoreId in getStoreId of NewsfeedsModelCategories (unused). Thanks Michael and Peter
31-Dec-2012 Michael Babker
# [#29620] *Creating new position when editing module broken in master. Thanks David.
# [#29363] Responsive layout during installation breaks. Thanks David.
27-Dec-2012 Michael Babker
+ [#28616] Add French language stemmer to Smart Search. Thanks Chris.
26-Dec-2012 Jean-Marie Simonet
# [#29210] Help page restricted to small window at top of screen. Thanks Chris.
# [#29849] *RTL: Wrong display of Subcategories titles in Content Category List menu item
# [#29860] *Wrong display of Search and Clear buttons in Insert Article modal + RTL
# [#29838] the registration-mail does not contain username and password if activation is set to "none". Even if "send password" is set to yes. Thanks Yannick Spang
# [#29727] Pagebreak plugin generates same ID for tabs and slides. Thanks Dennis.
25-Dec-2012 Jean-Marie Simonet
# [#29833] *Beez3 does not display Print, Mail, Edit, New icons Thanks Michael
# [#29834] *Beez3 edit article wrong display
# [#29824] Smart search saves * in language field. Thanks Elin
24-Dec-2012 Jean-Marie Simonet
$ Adding Missing strings #29852 and +
$ Adding missing front-end strings
21-Dec-2012 Jean-Marie Simonet
# [#29827] Semantic & Accessibility fixes frontend. Thanks Angie
19-Dec-2012 Jean-Marie Simonet
$+ Adding Catalan ca-ES installation files
19-Dec-2012 Jean-Marie Simonet
$ Full alpha display of installation languages
18-Dec-2012 Mark Dexter
# [#29651] Removing try/catch clauses in 'dispatch' methods. Thanks Patrick Alt.
# [#29771] Inconsistent usage of module suffix at mod_menu and mod_breadcrumbs. Thanks Kevin Griffiths.
13-Dec-2012 Jean-Marie Simonet
# [#29819] *Correcting Hathor admin login
# [#29762] *cpanel layout in backend messed up after adding feed to cpanel
# [#29764] Missing icon-pending in back-end. Thanks Michael
13-Dec-2012 Mark Dexter
# [#29821] Cannot select contact or newsfeed in modal after filtering
12-Dec-2012 Mark Dexter
# [#29738] Weblinks Hits Display when set to hide. Thanks Glenn Arkell.
# [#29809] Callback logger wrongly named. Thanks Elijah Madden.
# [#29715] *Submit an Article doesn't work. Thanks Jean-Marie.
04-Dec-2012 Mark Dexter
# [#29763] Category list state change bug. Thanks Dennis.
29-Nov-2012 Mark Dexter
# [#29744] Submenu module missing closing A tag. Thanks Kevin Griffiths.
# [#29749] *Correcting Hathor CPanel display. Thanks JM.
# [#29573] Remove unnecessary JS snippet from rules field. Thanks Michael.
27-Nov-2012 Jean-Marie Simonet
+$ Adding Swahili sw-KE installation files.
$ Although not used, adding missing JText::script strings in installation as they show in debug.
# [#29665] *Cache plugin is not differentiating between Menu-Items. Thanks Dennis.
# [#29740] *HTML direction tag for Back-end login missed
# [#29706] icon display in protostar pagination on active items. Thanks Lars
# [#29707] protostar pagination: active items li not closed. Thanks Lars
23-Nov-2012 Jean-Marie Simonet
$ Missing Beez3 and library lang strings. Syncing both en-GB.lib_joomla.ini
19-Nov-2012 Jean-Marie Simonet
# [#29714] Code style fixes based on Jenkins, replace uses of JRequest. Thanks Michael.
# [#28087] PHP errors when all modules are removed. Thanks David
# [#29694] Fix broken extension update. Thanks Viet Vu
# [#29439] Bootstrap clearfix improperly used. Thanks Elijah.
# [#29700] Component installer and menus may return invisible bug. Thanks Mario.
18-Nov-2012 Jean-Marie Simonet
# [#29684] Wrong HTML markup on category edit. Thanks Ofer
# [#29528] Incorrect arrows in table heading. Thanks Dennis
# [#29687] *Adapting hathor to new message using editor
# [#29679] *Passwords fields not required when creating a new user in back-end
# [#29698] *Adding bootsrtap-rtl to compiler, correcting some rtl classes
# [#29693] *Position of Article Info. Setting Use Global not saved. Menu Manager: Edit Menu Item and Article Manager: Edit Article. Thanks Volkmar
# [#29710] mod_breadcrumbs: Custom separator is not applied. Thanks Constantin
# [#29682] Adding an icon to the "reply" button in com_messages. Thanks Constantin.
# [#29712] Alternate fix for 29646 update changes. Thanks Michael
+ [#29496] Language Installation tool for the Joomla Installer. Thanks Javier.
16-Nov-2012 Jean-Marie Simonet
$+ Adding Uyghur ug-CN installation files
15-Nov-2012 Jean-Marie Simonet
$+ Adding Galician gl-ES installation files
# [#29660] Error 500 due to "missing alias column in assets table" Thanks Elin.
$+ Adding Esperanto eo-XX installation files
14-Nov-2012 Jean-Marie Simonet
# [#29558] Incorrect current menu item highlighting in mod_menu if 'Base Item' is not current. Thanks Dennis
# [#29619] In the current version 3.0.2 (master branch, 03. Nov. 2012) some settings aren't working. Thanks Benjamin.
# [#29473] Fixed issue with hits_class not being defined when hits is 24. Thanks Peter.
# [#29676] *formatting at the PM System are lost
13-Nov-2012 Jean-Marie Simonet
#$ [#29669] Consistent form validation notifications. Thanks Roland
# [#29675] *Protostar error page tries to load search module even when module is not published
$ [#29668] language installer coordinator team URL must changed j3 TT. Thanks Chalak
# [#29646] Some errors on Updater. Thanks Mark.
11-Nov-2012 Jean-Marie Simonet
# [#29569] *Implementing accordeons for Modules Options
# [#29635] * No message notification when new article is created
10-Nov-2012 Mark Dexter
# Remove trashed categories from sample data
# [#29621] The root asset has the wrong lft value in 3 files. Thanks Elin.
10-Nov-2012 Jean-Marie Simonet
$ [#29616] Missing JGLOBAL_CENTER in frontend language file. Thanks Patrick
# [#29654] *User Basic settings do not display when debug language on
# [#29653] *Correcting Isis media modal display
# [#29638] *admin dashboard statics not fully RTL. Thanks Chalak
09-Nov-2012 Jean-Marie Simonet
# Correcting EOL
-------------------- 3.0.2 Stable Release [8-Nov-2012] ------------------
06-Nov-2012 Mark Dexter
# [#29128] Add a heading menu item, use Bootstrap's markup for separator. Thanks Michael.
# [#29626] Commit for 29519 Breaks Wrapper Menu Item Type. Thanks Elin.
05-Nov-2012 Mark Dexter
# [#29565] Joomla! 3.x version update information issue on 64-bit servers. Thanks Ofer.
# [#28960] Correct system message output. Thanks Viet Vu.
04-Nov-2012 Jean-Marie Simonet
# [#29610] User and Notes views missing chosen/bootstrap. Thanks Kyle.
# [#29615] *Hathor edit user broken
02-Nov-2012 Jean-Marie Simonet
# [#29606] *New Feature Items associations also displays the parameter for other categories than com_content. Thanks Benjamin
# [#29602] Add bootstrap-extended to the CSS compiler. Thanks Michael
# [#29305] Adding red colour to invalid fields. Thanks Andrea
01-Nov-2012 Jean-Marie Simonet
# [#29597] 'Title' label doesn't appear when editing an article in frontend. Thanks Stephania
# [#29599] *Beez article category list display issue.
# [#29604] *Language no more available in Extension Manager after uninstall
30-Oct-2012 Jean-Marie Simonet
# [#29582] User Profile cannot be edited from user manager. Thanks Emir
# [#29583] JForm media field element is unable to determine the selected image root path. Thanks Sven.
#$ [#29584] *Untranslated strings in chosen.jquery.js using Isis
# [#29587] *Adding Author alias in Article Manager
28-Oct-2012 Jean-Marie Simonet
# [#29251] Com_content caches article view no matter of Itemid. Thanks Dennis
27-Oct-2012 Jean-Marie Simonet
$ Updating en-GB version to 3.0.2
# [#29339] User Manager: Viewing Access Levels - layout
# [#29570] Recaptcha fails. Thanks Panayiotis
# [#29577] Wrong status filter in Plug-in-Manager
+ Adding Kiswahili (East African Kiswahili Commission) flag
25-Oct-2012 Jean-Marie Simonet
# [#27989] Filtering of extension update list and additional notice before updating. Thanks Rob.
# [#29536] XHTML syntax error in default system Breadcrumbs module. Thanks Denia
# [#29533] Missing closing link tag in submenu layout. Thanks Yannick
24-Oct-2012 Jean-Marie Simonet
# [#29543] Category on article is sometimes not displayed
% [#29568] *Patch correcting issues in Featured/blog/archive for the info display
23-Oct-2012 Jean-Marie Simonet
# [#29547] Category parent link missing
# [#29545] Incorrect label / date in article created date. Thanks Denia
# [#29535] Invalid XHTML syntax in Protostar Joomla 3.0.1. Thanks Denia
# [#29340] Menu Manager: Menus
22-Oct-2012 Jean-Marie Simonet
# [#29553] Convert Hathor's brown color scheme to Less. Thanks Michael
# [#29552] *Com_messages "My Settings" broken
20-Oct-2012 Jean-Marie Simonet
# [#29530] *Language override search broken. Thanks Patrick
# [#29525] No tooltip help for Global Configuration Text Filters. Thanks Mark.
# [#29527] *Beez category list display issue.
18-Oct-2012 Jean-Marie Simonet
# [#29519] *Edit Menu Item layout usability
# [#29401] Repeated htmlspecialchars() Applied When Multiple Breadcrumbs Active. Thanks Peter and Roland
$# [#29521] Missing lang string in installation + correcting wrong constant in InstallationModelDatabase
# Category title display ommitted in Details column #29494
17-Oct-2012 Jean-Marie Simonet
# [#29470] *Hathor submenus broken. Thanks Yannick
# [#29477] Missing style for Cancel
# [#28379] *Normalizing Hathor css and js load in index.php + correcting a small error
# [#29239] Increment the hit counter of the category. Thanks Roberto
# [#29494] *Normalising Edit Category page
# [#29499] "Browser Page Title" Not Considered in Category Blog Layouts. Thanks Mig
14-Oct-2012 Jean-Marie Simonet
+ [#27373] [patch] Implementing Items associations in multilanguage. Thanks Benjamin.
# [#29471] Save as Copy Overwrites Menu Titles (always) for External URL. Thanks Roberto
# [#29487] isis error.php is accessing unexisting object $this->params. Thanks Daniel
# [#29480] Removed class=" form closing tag in contacts default view. Thanks Brent
# [#29476] Isis: Fixed btn-group labels not getting right colors in component subtemplate. Thanks Peter
# [#29411] Missing function _unix2DOSTime in libraries/joomla/archive/zip.php. Thanks Roberto
# Correcting code quality
12-Oct-2012 Jean-Marie Simonet
$ Correcting de-DE installation ini
# [#29478] Incorrect Home link from 500 error page Joomla 3.0
# [#29488] Missing JText In Language Installer
10-Oct-2012 Jean-Marie Simonet
$ Correcting fr-FR installation ini
-------------------- 3.0.1 Stable Release [9-Oct-2012] ------------------
08-Oct-2012 Mark Dexter
# [#29074] Back-end: Unable to save FTP Settings - Catchable fatal error. Thanks Elin.
# [#29468] Additional places where null should be changed to array(). Thanks Elin.
08-Oct-2012 Jean-Marie Simonet
# [#29454] multi level menus not support RTL languages well. Thanks Chalak
# [#29451] beez3: element closed before opened. Thanks Constantin.
# [#29452] beez3: change meta tag name from apple-touch-fullscreen to apple-mobile-web-app-capable. Thanks Constantin.
# [#29453] Update platform version to 12.2. Thanks Elin
^ Changing en-GB to version 3.0.1
# [#29464] Untranslated string COM_INSTALLER_INSTALL_FTP