-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
executable file
·12509 lines (7632 loc) · 608 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
2010-07-18 Steffen Kamper <[email protected]>
* Fixed bug #15169: Superfluous comma in CSS
2010-07-18 Susanne Moog <[email protected]>
* Fixed bug #15000: remove IM 4.2.9 recommendation in install tool (thanks to Steffen Gebert)
* Fixed bug #14998: Upgrade Wizards: Headlines have too much space below (thanks to Steffen Gebert)
2010-07-16 Susanne Moog <[email protected]>
* Fixed bug #14858: imageLinkWrap.JSwindow triggers XSS warning or Fails (thanks to Jigal van Hemert)
* Added feature #13797: new TS config option to disable the "Show secondary options" checkbox (thanks to J�rg Klein)
* Added feature #2049: Add the possibility to use "Ellipse" in Gifbuilder (thanks to Kjeld Schumacher)
2010-07-16 Xavier Perseguers <[email protected]>
* Fixed bug #14818: t3lib_db->listQuery() performance (thanks to Caspar Stuebs)
* Fixed bug #14985: FIND_IN_SET should be used isntead of complicated LIKE where clause
2010-07-16 Christian Kuhn <[email protected]>
* Fixed bug #14982: Make alt_doc.php unit testable (Thanks to Ingo Schmitt)
* Fixed bug #15142: [Unit tests] Remove unnecessary require_once() calls
2010-07-15 Bernhard Kraft <[email protected]>
* Fixed bug #14095: impexp doesn't work from clipboard
2010-07-14 Christian Kuhn <[email protected]>
* Fixed bug #14911: Validation errors in list view (Thanks to Georg Ringer)
2010-07-14 Dmitry Dulepov <[email protected]>
* Fixed bug #6208: zlib must be compiled in to make an extension lookup
* Fixed bug #12322: cHash is generated when no parameters are given
* Fixed bug #13309: t3lib_div::getURL curl connection has no connection timeout
2010-07-13 Jeff Segars <[email protected]>
* Fixed bug #14775: Old table header styling in Extension Manager (Thanks to Ralf Büchner)
* Fixed bug #15088: Using sprites breaks setting links to content elements (Thanks to Georg Ringer)
2010-07-13 Steffen Kamper <[email protected]>
* Fixed bug #15097: Intro looks weird with module and no submodules (Thanks to Georg Ringer)
* Fixed bug #15073: inlineJS creates superfluous markup (Thanks to Georg Ringer)
* Fixed bug #15103: TS Errors are hardly readable (white on yellow) (Thanks to Georg Ringer)
* Fixed bug #15098: TS Errors should be shown with flash messages (Thanks to Georg Ringer)
* Fixed bug #14855: Big Buttons in Page Module miss padding (Thanks to Georg Ringer)
2010-07-13 Xavier Perseguers <[email protected]>
* Fixed bug #15096: Missing icon for _recycler_ folders
2010-07-12 Steffen Kamper <[email protected]>
* Fixed bug #15082: [openDocs] Exception is thrown if a record isn't found
2010-07-12 Dmitry Dulepov <[email protected]>
* Fixed bug #1235: indexed search: garbage instead of cHash in the "path" link (thanks to Nikolas Hagestein)
2010-07-11 Steffen Kamper <[email protected]>
* Fixed bug #14970: ts browser condition results in error if browser is unknown (Thanks to Caspar Stuebs)
* Fixed bug #15004: Cleanup cms autoload classes
2010-07-11 Susanne Moog <[email protected]>
* Fixed bug #14923: CleanUp: getIconImage is not replaced in Core (thanks to Steffen Ritter)
* Follow-up to #15045: Trailing newlines after php closing tag. (Thanks to Nikolas Hagelstein)
2010-07-10 Stanislas Rolland <[email protected]>
* Fixed bug #14896: ExtJS is not included when RTE is invoked by USER_INT frontend script
2010-07-09 Steffen Kamper <[email protected]>
* Fixed bug #15061: Remove XCLASS from t3lib_utility_Http (Thanks to Georg Ringer)
* Fixed bug #15055: Scheduler: Date picker is broken in add/edit form
* Fixed bug #14988: TYPO3.Backend is assigned twice by ExtDirect and the viewport (Thanks to Stefan Galinski)
* Fixed bug #15047 Remove trailing whitespaces in front of EOL (Thanks to Nikolas Hagelstein)
* Fixed bug #15045: Trailing newlines after php closing tag. (Thanks to Nikolas Hagelstein)
2010-07-08 Susanne Moog <[email protected]>
* Follow-up to #14719: Wrong code comment (QUICKSTART/FIRST_INSTALL) (thanks to Steffen Gebert)
* Fixed bug #14813: Install Tool uses deprecated function t3lib_stdGraphic->imagecreate() (thanks to Stefan Galinski)
* Fixed bug #14971: Unit test for sanitizeLocalUrl fails on installations inside a subdirectory (thanks to Stefan Galinski & Pascal Jungblut)
2010-07-08 Dmitry Dulepov <[email protected]>
* Fixed bug #15049: "Fileextension" is not an English word
2010-07-08 Francois Suter <[email protected]>
* Code cleanup #15036: Indexed search: Remove indexer CLI script which does nothing
2010-07-07 Christian Kuhn <[email protected]>
* Fixed bug #14968: Add unit tests for t3lib_div::validIP (Thanks to Nikolas Hagelstein and Felix Kopp)
2010-07-07 Susanne Moog <[email protected]>
* Follow-up to #14845: No preview images with referenced files anymore (thanks to Stefan Galinski)
2010-07-06 Susanne Moog <[email protected]>
* Fixed bug #14845: Bug: Filelist module reports "type" of files also for directories (thanks to Caspar Stuebs and Andy Grunwald)
2010-07-06 Christian Kuhn <[email protected]>
* Fixed bug #14984: Add example unit tests from T3DD10 unit testing workshop (Thanks to Oliver Klee)
* Fixed bug #14885: No access to taskcenter (tasks) for non-admins (Thanks to Jigal van Hemert)
* Fixed bug #14991: Missing fields in "showRecordFieldList" at the TCA for fe_users (Thanks to Frank Nägler)
* Fixed bug #14972: Add unit tests for t3lib_div::removeArrayEntryByValue (Thanks to Thorben Kapp)
* Fixed bug #14967: [Caching framework] fileBackend testcase removes files in /sbin
* Fixed bug #14977: Add php cache frontend to t3lib/config_default.php (Thanks to Felix Oertel)
2010-07-06 Francois Suter <[email protected]>
* Added feature #14993: Use TYPO3_REQUESTTYPE also for Install Tool access
* Added feature #14994: Add Scheduler task for autopublication of workspaces
2010-07-06 Steffen Kamper <[email protected]>
* Fixed bug #14960: [t3skin] apps-pagetree.css is redundant (Thanks to Felix Kopp)
* Follow-up to #13379: Sprite Icon API (Thanks to Steffen Ritter)
* Fixed bug #14980: Install tool causes PHP warnings if typo3conf/ is not writeable
2010-07-05 Susanne Moog <[email protected]>
* Follow-up to #14705: In BE login form labels: position of caps lock warning (thanks to Steffen Gebert)
* Fixed bug #14880: introduced type hinting in t3lib_iconWorks (thanks to Jigal van Hemert)
* Fixed bug #14824: wrong icon in template analyzer (thanks to Georg Ringer)
2010-07-05 Steffen Kamper <[email protected]>
* Fixed bug #12514: Installtool duplicates values of fields with defaultTypoScript_constants
* Fixed bug #10958: Broken i18n_parent relation upon localizing records in workspace (Thanks to Tolleiv Nietsch)
* Fixed bug #14907: Help Modules can not be disabled on a per user basis (Thanks to Georg Ringer)
* Fixed bug #14957: Styling of record history (Thanks to Georg Ringer)
2010-07-04 Stanislas Rolland <[email protected]>
* Fixed bug #14929: htmlArea RTE: Font Family and Font Size Dropdown boxes don't open
* Fixed bug #14996: htmlArea RTE: Clicking in drop down boxes should mark text
2010-07-04 Francois Suter <[email protected]>
* Fixed bug #14989: Use TYPO3_REQUESTTYPE consistently for CLI calls detection
2010-07-03 Francois Suter <[email protected]>
* Cleanup #14987: Spelling mistakes in cli_dispatch.phpsh
2010-07-02 Christian Kuhn <[email protected]>
* Fixed bug #14947: Missing closing div in db_new_content_el.php (Thanks to Georg Ringer)
2010-06-29 Ernesto Baschny <[email protected]>
* Fixed bug #14810: Follow-up to bug #13670: Export module does not keep pagetree configuration (exports only the page tree) (Thanks to Thomas Juhnke)
2010-06-29 Stanislas Rolland <[email protected]>
* Fixed bug #14905: htmlArea RTE: Image dialogue shows tab "Current picture" when there is no current image
2010-06-29 Steffen Kamper <[email protected]>
* Follow-up to #14553: topFrameH configuration option doesn't work anymore
2010-06-28 Stanislas Rolland <[email protected]>
* Fixed bug #14830: htmlArea RTE: Entering line breaks with Safari not possible
2010-06-27 Stanislas Rolland <[email protected]>
* Fixed bug #14886: htmlArea RTE: Incorrect function scope when error is raised
* Fixed bug #14887: htmlArea RTE: RTE may be started before style sheets are loaded
2010-06-26 Stanislas Rolland <[email protected]>
* Fixed bug #14876: htmlArea RTE: SelectFont plugin may cause js error
* Follow-up to bug #14793: htmlArea RTE: Problematic icons in IE6
2010-06-25 Steffen Kamper <[email protected]>
* Fixed bug #14870: typo in parameter type causes php error (Thanks to Jigal van Hemert)
* Fixed bug #14866: Quicktime audio format m4a isn't supported
* Fixed bug #14847: Bug: Template Analyzer: Line numbers barely readable (Thanks to Andy Grunwald)
* Fixed bug #14857: Reports Module: Wrong icon and a styling problem (Thanks to Georg Ringer)
* Fixed bug #14834: About module need padding
* Fixed bug #14844: Milliseconds on logout (Thanks to Georg Ringer)
2010-06-22 Benjamin Mack <[email protected]>
* Branching TYPO3 4.4.0 to TYPO3_4-4
2010-06-22 Jeff Segars <[email protected]>
* Fixed bug #14814: Improve texts in the 1-2-3 Install Tool
* Fixed bug #14822: Missing link in Install Tool footer
* Follow-up to #14465: Make use of the new Sprite API - create new relation in IRRE
2010-06-22 Oliver Hader <[email protected]>
* Cleanup: Updated ext_emconf.php files in system extensions
2010-06-22 Sebastian Kurfürst <[email protected]>
* Raising Extbase and Fluid to 1.2.0
2010-06-22 Steffen Kamper <[email protected]>
* added empty ie6.css to prevent log flooding
* removed unnecessary files in sysext sys_action
* Fixed bug #14816 bugfix : BE login in IE6 looks bad (Thanks to Jigal van Hemert and Jo Hasenau)
* Follow-up to #14538: Icons missing in page tree for "Page contains" pages (Thanks to Steffen Ritter)
* Added manuals for taskcenter and sys_action (Thanks to Georg Ringer)
* Fixed bug #14771: Updates for taskcenter, sys_action, impexp (Thanks to Georg Ringer)
* Follow-up to #14465: Make use of the new Sprite API throughout the TYPO3 Core Backend (Thanks to Steffen Ritter)
* Follow-up to #14798: Sitename missing in Login form
2010-06-22 Benjamin Mack <[email protected]>
* Followup to #14636: Improvements to new Backend skin - small change to the versioning color in the pagetree (Thanks to Steffen Gebert)
* Updated and formatted NEWS.txt
2010-06-21 Benjamin Mack <[email protected]>
* Followup to #14636: Improvements to new Backend skin - Smaller TCEforms changes, RTE styling (Thanks to Steffen Gebert)
2010-06-21 Jeff Segars <[email protected]>
* Fixed bug #14804: Updated extension icons for system extensions (Thanks to Jigal van Hemert)
* Followup to #10424: Old version (3.x) screenshots in CSH - removed label reference to version 3.6 (Thanks to Philipp Gampe)
* Fixed bug #14760: Use labels for search in list view (Thanks to Georg Ringer)
* Fixed bug #14601: Date picker does not work on IRRE elements (Thanks to Steffen Ritter)
* Added feature #14719: Add ability to use typo3conf/FIRST_INSTALL to temporarily enable the Install Tool and allow an easier first install.
2010-06-21 Stanislas Rolland <[email protected]>
* Fixed bug #14799: htmlArea RTE: Color dialogue may raise a js error in IE
* Updated htmlArea RTE version to 2.0.2
* Fixed bug #14793: htmlArea RTE: Problematic icons in IE6
* Fixed bug #14812: htmlArea RTE: Path to acronym record icon is not correct (Thanks to Helmut Hummel)
2010-06-21 Ernesto Baschny <[email protected]>
* Fixed bug #8893: eval "timesec" sets seconds to zero (Thanks to Ralf Hettinger and Andy Grunwald)
2010-06-21 Steffen Kamper <[email protected]>
* Fixed bug #14514: Long lines in module menu are unreadable
* Fixed bug #14798: Sitename missing in Login form
* Fixed bug #14752: Add Update Wizards for Skinning Changes (Thanks to Jigal van Hemert)
* Fixed bug #14800: JS errors prevent JS pased popups from working in IE (Thanks to Jo Hasenau)
* Fixed bug #14808 tceforms.js slows down performance of IE dramatically (Thanks to Jo Hasenau)
* Fixed bug #14721: Flexform sections are unstyled and look weird
* Fixed bug #11543: Shortcuts broken if current directory is not in include path (Thanks to Mads Chr. Olesen)
2010-06-20 Benjamin Mack <[email protected]>
* Release of TYPO3 4.4.0RC2
2010-06-20 Stanislas Rolland <[email protected]>
* Fixed bug #14797: htmlArea RTE: Toolbar combo boxes do not float left in IE6 (Thnaks to Jigal van Hemert).
2010-06-20 Susanne Moog <[email protected]>
* Followup to #14636: Improvements to new Backend skin - Install tool login shadow fixed
* Fixed bug #14516: Strip background gradients - smaller image size and no wrong colors in browsers with color profile capability (Thanks to Helmut Hummel)
* Followup to #14465: Make use of the new Sprite API - help in backend access lists (Thanks to Steffen Ritter)
* Followup to #14465: Make use of the new Sprite API - delete icon in QuickEdit (Thanks to Steffen Gebert)
* Followup to #14465: Make use of the new Sprite API - sys_language, sys_action (Thanks to Steffen Ritter)
* Fixed bug #14788: Add fallback graphics for CSS3 background gradients (Thanks to Steffen Gebert)
* Fixed bug #14755: Step 2 - Select method should be radio choice (On behalf of Steffen Kamper)
* Fixed bug #14752: Add Update Wizards for Skinning Changes (Thanks to Steffen Ritter)
2010-06-20 Benjamin Mack <[email protected]>
* Followup to #14636: Improvements to new Backend skin - Removes the redundant headline above the TCEforms (Thanks to Steffen Gebert)
* Raised Extbase version to 1.2.0RC2
* Fixed bug #14722: Remove info icon from CEs in page module (Thanks to Steffen Gebert)
* Followup to #14733: Improvements to Backend skin - Added styling to missing parts of the Backend - TCEforms without tabs, TCEforms with Flexforms, TCEforms with IRRE, TSconfig help, help styling improvements
* Followup to #13379: Sprite Icon API - Removed unneeded checks in ext_tables.php for t3skin (Thanks to Steffen Ritter)
* Followup to #14733: Improvements to Backend skin - Exchanges "selection delete" icon to make it consistent look again (Thanks to Steffen Ritter)
* Fixed bug #10424: Old version (3.x) screenshots in CSH (Big thanks to Philipp Gampe)
* Followup to #14733: Improvements to Backend skin - Added styling to missing parts of the Backend
2010-06-19 Francois Suter <[email protected]>
* Fixed bug: #14184: Scheduler: Handle invalid serialized exception objects
* Fixed bug: #14792: Scheduler: Screenshots in the manual must be updated for new skin
2010-06-19 Stanislas Rolland <[email protected]>
* Fixed bug #14464: htmlArea RTE: Type of block accumulation if the block is manually selected in Safari
2010-06-19 Benjamin Mack <[email protected]>
* Fixed bug #14593: Link wizard tabs have no style / Followup to #14733 (On behalf of Stanislas Rolland)
2010-06-18 Steffen Kamper <[email protected]>
* Fixed bug #14705: In BE login form labels are to small (for German BE-Language) (thanks to Falk Wachsmuth)
2010-06-18 Benjamin Mack <[email protected]>
* Followup to #14733: Improvements to Backend skin - Added updated styles for the taskcenter module
2010-06-18 Stanislas Rolland <[email protected]>
* Fixed bug ##14436: External links are prepended with current domain by RTE transformation
* Updated htmlArea RTE version to 2.0.1
2010-06-18 Sebastian Kurfürst <[email protected]>
* Raised Extbase and Fluid versions to 1.2.0RC1
2010-06-18 Francois Suter <[email protected]>
* Fixed bug #14774: Scheduler: Improve documentation with various advice for developers
2010-06-17 Stanislas Rolland <[email protected]>
* Fixed bug #14770: htmlArea RTE: Abbreviation dialogue not always correctly initialized
2010-06-17 Ingo Renner <[email protected]>
* Fixed issue #14729: Backwards compatibility broken by disabled deprecation log
2010-06-17 Benjamin Mack <[email protected]>
* Release of TYPO3 4.4.0RC1
2010-06-17 Benjamin Mack <[email protected]>
* Fixed bug #14577 Ext.ux.elasticTextArea causes JS errors in all version of IE (Thanks to Jo Hasenau)
* Partly reverted #14636: Improvements to new Backend skin - reverted TCEforms styling, will be included later
2010-06-16 Susanne Moog <[email protected]>
* Fixed bug #14633: Nested form tag breaks editing icons and ExtJS funcitonality in the page module for IE8 users (Thanks to Jo Hasenau)
* Fixed bug #14132: Regexp for automatic line breaks in Gifbuilder is incorrect (Thanks to Jigal van Hemert)
* Follow-up to #14733: Improvements to Backend skin - Fixed typo
* Fixed bug #14733: Improvements to Backend skin (Thanks to Steffen Gebert)
2010-06-16 Stanislas Rolland <[email protected]>
* Fixed bug #14567: htmlArea RTE: RTE is greyed out and has no "styles" in page module QuickEdit
* Fixed bug #14746: htmlArea RTE: TableOperations: Label for "Headers" has a colon in excess
* Fixed bug #14748: Span tags with multiple classes being removed by RTE transformation
2010-06-16 Steffen Kamper <[email protected]>
* Fixed bug #13874: NULL reference when using hook in class.t3lib_utility_client.php (Thanks to Steffen Müller)
* Fixed bug #14717: [Usability] Add delay to close the context menu
* Fixed bug #14016: typo in class.t3lib_tcemain.php (Thanks to Vladimir Podkovanov)
2010-06-15 Stanislas Rolland <[email protected]>
* Fixed bug #14737: htmlArea RTE: Missing labels for SelectFont extension
* Fixed bug #14738: htmlArea RTE: Cleaning dead scripts
* Fixed bug #14622: htmlArea RTE: Drop down boxes have no width when displayed with feeditadvanced
2010-06-14 Stanislas Rolland <[email protected]>
* Fixed bug #14723: htmlArea RTE: JS errors block RTE usage in IE6 and IE7 (Thanks to Jo Hasenau)
* Follow-up to bug #14360: htmlArea RTE: Toolbar and context menu styling needs adjustments
* Updated htmlArea RTE version to 2.0.0
2010-06-14 Peter Niederlag <[email protected]>
* Cleanup, #14660: add hint on required rewrite for compression in config_default.php
2010-06-14 Christian Kuhn <[email protected]>
* Fixed bug #11447: Unwanted control fields exported in CSV file (Thanks to Andreas Lappe)
2010-06-14 Benjamin Mack <[email protected]>
* Followup to #14324: Feature: Add spriteGeneratorAPI to support the new sprite-icon-api - Renamed array, added functionality to add TCA type icons from Extensions, allow changes in core icons to trigger cache clearing (Thanks to Steffen Ritter)
* Followup to #14465: Make use of the new Sprite API throughout the TYPO3 Core Backend - Typo in IRRE (Thanks to Steffen Gebert)
2010-06-14 Steffen Kamper <[email protected]>
* Fixed bug #14716: Version module don't display Title
* Fixed bug #14236: logging into the Install Tool gives an alert (Thanks to Steffen Gebert)
* Added missing flags #11461: Serbian flag in sys_language selector
* Added missing flags #11807: Flags for belgium is missing
* Fixed bug #14708: Version selector looks cryptic
* Fixed bug #14354: Bug: fix percentage of changes in Workspace Manager -> "Show differences inline" (Thanks to Marco Huber)
* Reverted revision 7901: #14467: Code cleanup: t3lib_iconWorks::getIconImage is not needed anymore
2010-06-13 Steffen Kamper <[email protected]>
* Fixed bug #14640: Improve cookie detection at login screen (Thanks to Steffen Gebert)
* Fixed bug #14565: There is no way to disable compress and concatenate
* Fixed bug #14545: [No Title] shown when editing a record on root level (Thanks to Reinhard Führicht)
* Fixed bug #14681: Use self:: for static method calls with classname:: within the same class in t3lib (Thanks to Sebastian Michaelsen)
* Fixed bug #14538: Icons missing in page tree for "Page contains" pages (Thanks to Steffen Ritter)
2010-06-13 Xavier Perseguers <[email protected]>
* Raised DBAL version from 1.1.6 to 1.1.7
2010-06-13 Oliver Hader <[email protected]>
* Cleanup: Updated copyright comments
* Cleanup: Set SVN end of line property
2010-06-13 Benjamin Mack <[email protected]>
* Fixed bug #14624: Use Flash Message in Template module
2010-06-12 Steffen Kamper <[email protected]>
* Fixed bug #13895: Bug: getTSConfigVal called with wrong object (Thanks to Andreas Stauder)
* Fixed bug #14467: Code cleanup: t3lib_iconWorks::getIconImage is not needed anymore (Thanks to Steffen Ritter)
* Fixed bug #14356: Make disable_controls available for all group fields, not just type "file" (Thanks to Sven Teuber)
2010-06-12 Susanne Moog <[email protected]>
* Follow-up to #8778: Disabled draft workspace: NEWS.txt & forgotten ext_conf_template
* Follow-up to #14627: SpriteIcons: page-tree, not age-tree
* Fixed bug #14627: SpriteIcons: Several Icons replaced with non-existent sprite-Icons / not replaced / replaced wrong (Thanks to Steffen Ritter)
2010-06-11 Benjamin Mack <[email protected]>
* Fixed bug #14636: Improvements to new Backend skin, replace old styling (Thanks to Steffen Gebert and Lars Zimmermann)
* Fixed #14679: Deprecating page and branch versioning, these versioning types are now disabled by default, see NEWS.txt for 4.4 for more info
* Fixed bug #171: added documentatino for calculate and display filepermissions in filelist (Thanks to Jigal van Hemert)
* Added feature #14546: Make sprite icons / PNGs work in Internet Explorer 6 through PNGfix that works with background images (Thanks to Steffen Ritter)
* Added feature #14546: Hook in typo3/template.php to add additional header data (Thanks to Steffen Ritter)
* Fixed bug #14598: Add unique column name in page module (Thanks to Steffen Gebert)
* Followup to #485: Hookrequest for ~ TemplaVoila unlink doesn't work for Non-Admins - added an additional hook parameter (Thanks to Tolleiv Nietsch)
2010-06-11 Steffen Kamper <[email protected]>
* Fixed bug #14682: ExtJS removes font-weight and font-style from several tags (Thanks to Steffen Gebert)
* Fixed bug #14605: rootline says "pid" where it should be "uid" or just "ID"
* Fixed bug #14668: Bug: Make flashupload work again (Thanks to Patrick Bahne)
2010-06-11 Christian Kuhn <[email protected]>
* Cleanup #14405: Rename test cases from *_testcase to *Test (Thanks to Stefano Kowalke)
2010-06-10 Susanne Moog <[email protected]>
* Added feature #8778: Add possibility to disable TYPO3 draft workspace by localconf.php configuration (Thanks to Sonja Scholz)
* Cleanup #14683: Remove misc/phpcheck/ directory (Thanks to Sebastian Michaelsen)
2010-06-10 Francois Suter <[email protected]>
* Fixed bug #14685: Some status reports classes have wrong XCLASS inclusion (thanks to Peter Niederlag)
2010-06-10 Stanislas Rolland <[email protected]>
* Follow-up to issue #14662: htmlArea RTE: Should use t3lib_utility_Client::getBrowserInfo
* Fixed bug #14691: htmlArea RTE: Hitting ENTER in absence of block element may produce non-valid html in non-IE browser
* Fixed bug #14692: t3lib_utility_client is not working with php 5.2.0 (Thanks to Franz Koch)
2010-06-10 Dmitry Dulepov <[email protected]>
* Fixed bug #5117: typolink: cHash corrupted due to linkVars (together with Pierre Dudoret (Popy))
2010-06-09 Stanislas Rolland <[email protected]>
* Fixed bug #14677: htmlArea RTE: Toolbar state incorect in the absence of block element
* Follow-up to issue #14662: htmlArea RTE: Should use t3lib_utility_Client::getBrowserInfo
2010-06-09 Steffen Kamper <[email protected]>
* Added test case for #14663: t3lib_utility_Client::getBrowserInfo returns gecko build date rather than version
* Fixed bug #14663: t3lib_utility_Client::getBrowserInfo returns gecko build date rather than version
* Fixed bug #14673: Usage of debug() in BE use group *line* by default
* Fixed bug #14674: Replace calls to t3lib_extMgm:: within t3lib_extMgm to self:: due to performance reasons (Thanks to Sebastian Michaelsen)
* Fixed bug #14676: Replace calls to t3lib_iconWorks:: within t3lib_iconWorks to self:: due to performance reasons (Thanks to Sebastian Michaelsen)
* Fixed bug #14675: Replace calls to t3lib_BEfunc:: within t3lib_BEfunc to self:: due to performance reasons (Thanks to Sebastian Michaelsen)
* Follow-up to bug #13611: Replace calls to t3lib_div:: within t3lib_div to self:: du to performance reasons (Thanks to Sebastian Michaelsen)
* Fixed bug #14555: early thrown debug messages are not visible (BE only) (Thanks to Stefan Galinski)
* Fixed bug #14628: Open t3lib_db for own instance
* Follow-up to bug #8305: SQL debug output is not shown in the Backend
* Fixed bug #14618: Bug: Add debug feature to Ext Direct (Thanks to Fabien Udriot)
* Follow-up to bug #8305: SQL debug output is not shown in the Backend
* Added test case t3lib_utility_clientTest.php
* Fixed bug #14458: getBrowserInfo fails with IE UA Strings
2010-06-09 Christian Kuhn <[email protected]>
* Added feature #14666: Caching framework: Backport PhpFrontend from FLOW3 and refactor FileBackend
* Added feature #14655: Caching framework: Implement PDO backend
2010-06-08 Stanislas Rolland <[email protected]>
* Updated htmlArea RTE manual.
* Fixed bug #14662: htmlArea RTE: Should use t3lib_utility_Client::getBrowserInfo
* Fixed bug #13062: htmlArea RTE: "non-floating" float value doesn't stick on images
* Fixed bug #13301: htmlArea RTE: textstyle cannot be applied to full content of block element
2010-06-08 Oliver Hader <[email protected]>
* Cleanup: Fixed formatting of t3lib_PageRenderer_testcase
* Follow-up to bug #3977: Unit tests for directory permission are too restrictive
* Follow-up to feature #14277: Fixed unit tests for loading scriptaculous modules
2010-06-08 Steffen Kamper <[email protected]>
* Fixed bug #14611: [Install] Content of Input Fields is not displayed completely
2010-06-07 Christian Kuhn <[email protected]>
* Fixed bug #14638: Update caching framework to its according FLOW3 revision 4443
2010-06-06 Stanislas Rolland <[email protected]>
* Follow-up to bug #14360: htmlArea RTE: Toolbar and context menu styling needs adjustments
* Fixed bug #12486: RTE does not work with Arora
2010-06-06 Ingo Renner <[email protected]>
* Fixed issue #14560: Violation of naming conventions in sprite generation API
* Fixed issue #14561: Violation of naming conventions in t3lib_compressor
2010-06-06 Steffen Kamper <[email protected]>
* Fixed bug #14630: Backend doesn't use $this->pageRenderer
2010-06-06 Benjamin Mack <[email protected]>
* Fixed bug #1294: movie param of flash object not processed by prefixResourcePath(Thanks to Jigal van Hemert)
* Fixed bug #14629: Copyright Year in Page Source is still wrong (Thanks to Jigal van Hemert)
2010-06-06 Christian Kuhn <[email protected]>
* Fixed bug #14635: Caching framework file backend: Unit test fixes
* Fixed bug #14632: Caching framework memcached backend: No exception thrown if set() fails and wrong boolean comparison
* Fixed bug #14631: Caching framework memcached backend: Wrong memcache server detection in unit tests
* Follow-up to #11386: Caching framework file backend does not return absolute path in getCacheDirectory()
* Fixed bug #14455: [Performance] Wrong variable in t3lib_cache_memcachedbackend leads to redundant data (Thanks to Dan Osipov)
2010-06-05 Stanislas Rolland <[email protected]>
* Fixed bug #14625: htmlArea RTE: Inconsistant position of ok button
2010-06-05 Benjamin Mack <[email protected]>
* Fixed bug #14626: Login refresh popup should not display news
* Followup to #14387: Remove the feature "Enable extensions without review (basic security check)" from EM (Thanks to Helmut Hummel)
2010-06-04 Steffen Kamper <[email protected]>
* Fixed bug #14615: Autosuggest function doesn't work with quotes
2010-06-04 Susanne Moog <[email protected]>
* Fixed bug #13818: tcemain versionSwap might break pages_language_overlay relations (thanks to Tolleiv Nietsch)
2010-06-03 Stanislas Rolland <[email protected]>
* Fixed bug #14397: htmlArea RTE: Incorrect encoding of some labels when BE is not utf-8
2010-06-03 Xavier Perseguers <[email protected]>
* Fixed bug #14130: Switching pages with browsebox doesn't work (thanks to Mark Kuiphuis)
2010-06-02 Christian Kuhn <[email protected]>
* Fixed bug #13506: [felogin] Function changePassword does not work, when hitting 'enter' in change password form (Thanks to Christian Futterlieb)
2010-05-31 Oliver Hader <[email protected]>
* Release of TYPO3 4.4.0beta3
2010-05-31 Oliver Hader <[email protected]>
* Fixed bug #14556: Media content element shows HTML markup in additional flexform configuration
2010-05-31 Christian Kuhn <[email protected]>
* Fixed bug #14527: fixPermissions() for ENABLE_INSTALL_TOOL and extension import
* Fixed bug #13701: @ini_set() works only on windows, on some unices it could render the function unusable (Thanks to Stephan Seitz)
2010-05-31 Steffen Kamper <[email protected]>
* Fixed bug #14553: topFrameH configuration option doesn't work anymore (Thanks to Stefan Galinski)
* Fixed bug #14530: Missing icons in new BE skin (sprites) v7
* Fixed bug #14547: Flags in localization view (list view) have no title
* Fixed bug #14530: Missing icons in new BE skin (sprites) v6
* Fixed bug #12990 : referrer in felogin form is not encoded correctly (Thanks to Jigal van Hemert)
2010-05-31 Dmitry Dulepov <[email protected]>
* Fixed bug #13858: IS cannot not index files if absRefPrefix is set and indexExternalURLs is not (thanks to Christian Kuhn and Steffen Ritter for help!)
2010-05-31 Benjamin Mack <[email protected]>
* Followup to #13998: Introduce Automatic versioning of CSS and JS files - fixed tabs for install tool
* Dropped feature #14441: Drop support for GDlib 1.x, GDlib2 is now default
* Fixed bug #13138: Add hook for manipulating content in felogin extension (Thanks to Thomas Layh)
* Fixed bug #14540: Replace icons in module menu to use new styles (Thanks to Steffen Gebert)
* Fixed bug #14537: Add spinner icons for toolbar (Thanks to Steffen Gebert)
* Fixed bug #14536: Use sprite icons in toolbar (Thanks to Steffen Gebert)
* Fixed bug #14534: Cleanup: Icons missing in the new icon-set, and therefore sprites are updated (Thanks to Steffen Ritter)
* Fixed bug #14535: Checkbox Alignment in TCEforms is broken (Thanks to Steffen Kamper)
* Fixed bug #14532: SpriteIcons: Clickmenu is not replaced (Thanks to Steffen Ritter)
2010-05-30 Benjamin Mack <[email protected]>
* Followup to #14465: Make use of the new Sprite API throughout the TYPO3 Core Backend - Missing check for directory type in class.file_list.inc (Thanks to Steffen Ritter)
2010-05-30 Steffen Kamper <[email protected]>
* Fixed bug #14544: Core calls deprecated procesIncludes()
* Fixed bug #14530: Missing icons in new BE skin (sprites) v5
* Fixed bug #14530: Missing icons in new BE skin (sprites) v4
* Fixed bug #14530: Missing icons in new BE skin (sprites) v3
* Fixed bug #14530: Missing icons in new BE skin (sprites) v2
* Fixed bug #14526: page tree filterbox styling fixed in new BE layout (Thanks to Jigal van Hemert)
* Fixed bug #14533: SpriteIcons: Icons in db_new.php are not replaced (Thanks to Steffen Ritter)
* Fixed bug #14530: Missing icons in new BE skin (sprites)
* Fixed bug #14520: Css correction for template modul
* Fixed bug #14525: Workspacemenu JS is broken
* Fixed bug #14522: Pagetree workspace div correction
2010-05-30 Oliver Hader <[email protected]>
* Added feature #14383: Integrate hooks to backend.php to perform several customizations
* Fixed bug #14392: typolink creates incomplete links in combination with the forceAbsoluteUrl property
2010-05-29 Christian Kuhn <[email protected]>
* Fixed bug #12872: Use "strong" instead of "b" (Thanks to Steffen Kamper and Stefano Kowalke)
* Fixed bug #14517: Set focus on pagetree filter input field (Thanks to Sebastian Gebhard)
* Fixed bug #14513: Improve rendering of icons in t3-row-header (Thanks to Steffen Gebert)
* Follow-up to feature #14490: Add missing styles of login box (Thanks to Steffen Gebert)
* Fixed bug #14510: Increase width of module menu and navigation frame (Thanks to Steffen Gebert)
2010-05-29 Steffen Kamper <[email protected]>
* Fixed bug #14518: HCI: Page "with root-flag" set should have "domain"-icon (Thanks to Steffen Ritter)
* Fixed bug #14519: Toolbar menuitems alignment
* Fixed bug #14512: Remove "bigButtons" by default in Page module (Thanks to Steffen Gebert)
* Fixed bug #10377: Cleaning and linting typo3/js-scripts
* Fixed bug #14523: Missing icons in workspace modules
2010-05-29 Oliver Hader <[email protected]>
* Fixed bug #14488: prioriCalc no longer working correctly (thanks to Franz Koch)
2010-05-29 Susanne Moog <[email protected]>
* Follow-up to feature #14490: wrong position of stop page tree icon & cursor:pointer for IE6 icons
* Follow-up to feature #14506: Fixes for alt_db_navframe (page tree filter - missing JS file) (Thanks to Steffen Gebert)
2010-05-28 Steffen Kamper <[email protected]>
* Fixed bug #11503: HTML5 doctype implementation
* Follow-up to feature #14506: Fixes for alt_db_navframe (page tree filter) (Thanks to Steffen Gebert)
* Follow-up to feature #14490: forgotten css file
* Follow-up to feature #14490: A new skin for the TYPO3 Backend (Thanks to Steffen Gebert and Lars Zimmermann)
* Fixed bug #14506: Fixes for alt_db_navframe (page tree filter) (Thanks to Steffen Gebert)
* Fixed bug #14462: Remove old_backend
2010-05-28 Oliver Hader <[email protected]>
* Fixed bug #14503: HTML is shown in sysext belog after the usage of the sprite api for icons (thanks to Andy Grunwald)
* Follow-up to feature #14490: Fatal error in typo3/sysext/cms/layout/class.tx_cms_layout.php
2010-05-28 Francois Suter <[email protected]>
* Fixed bug: #13315: Scheduler: Failed status hides other statuses
2010-05-28 Tobias Liebig <[email protected]>
* Follow-up to bug #3800: change the label names (warning about empty reference index table) (thanks to Michael Knabe)
* Fixed bug #13903: wrong links with multiple domain records on one page with typolinkCheckRootline (thanks to Irene Höppner)
* Fixed bug #14499: saving in t3editor per ajax call not possible (follow-up to #14465 new Sprite API)
2010-05-28 Susanne Moog <[email protected]>
* Follow-up to bug #14465: Make use of the new Sprite API throughout the TYPO3 Core Backend
* Fixed bug #1402: Text area / RTE fields can't be set to required at the moment.
* Fixed bug #12604: fileNameASCIIPrefix got deprecated but is used in core (Thanks to Steffen Gebert)
* Fixed bug #11437: New labels in the log module are hardcoded (Thanks to Andy Grunwald)
* Fixed bug #14461: TCEforms: Use fieldsets for palettes instead of tables (Thanks to Jo Hasenau)
* Fixed bug #14505: treeView implementation fails in adding title-tags to sprite icons (Thanks to Steffen Ritter)
2010-05-28 Christian Kuhn <[email protected]>
* Fixed bug #14508: Fixes to the Page module: Add missing js file as follow-up to #14490 (Thanks to Steffen Gebert)
* Fixed bug #13636: sysext:version needs doNotLoadInFE => 0 (Thanks to Georg Ringer)
* Fixed bug #9731: Wrong XCLASS definition in t3lib/t3lib_rteapi.php (Thanks to Marcus Schwemer)
* Fixed bug #7015: t3lib_DB displays wrong SQL in error case (Thanks to Steffen Ritter)
2010-05-28 Benjamin Mack <[email protected]>
* Added feature #14490: A new skin for the TYPO3 Backend (Thanks to Steffen Gebert and Lars Zimmermann)
* Fixed bug #14342: t3lib_compressor does not rewrite "data:" URIs (Thanks to Steffen Gebert)
2010-05-28 Sebastian Kurfürst <[email protected]>
* Raised Extbase version from 1.2.0beta1 to 1.2.0beta2
2010-05-28 Xavier Perseguers <[email protected]>
* Raised DBAL version from 1.1.5 to 1.1.6
2010-05-27 Jeff Segars <[email protected]>
* Follow-up to bug #14486: Sprite icons not shown in Safari and IE6 (thanks to Steffen Ritter)
* Follow-up to bug #14486: Fix transparency on frontend and backend user icons (thanks to Steffen Gebert and Steffen Ritter)
2010-05-27 Xavier Perseguers <[email protected]>
* Fixed bug #14496: SQL parser does not handle ALTER TABLE with character set operation
* Follow-up of bug #13670: forgotten reset/each statement caused side effect of using foreach statement
* Fixed bug #14456: SQL parser doesn't accept ALTER TABLE statement without CHANGE, DROP or ADD keyword
* Fixed bug #13934: Side-effect of substr in t3lib_cs (thanks to Rens Admiraal)
2010-05-27 Jochen Rau <[email protected]>
* Fixed bug #13604: PHP Warning from t3lib_loadmodules after installing extbase, because $TBE_MODULES['_dispatcher'] is not unset (thanks to Marc Bastian Heinrichs)
2010-05-27 Tobias Liebig <[email protected]>
* Fixed bug #14388: TypoScript templates containing a "$1" become corrupted
2010-05-27 Stanislas Rolland <[email protected]>
* Fixed bug #14489: htmlArea RTE: color dialogues do not show all configured colors
* Fixed bug #14491: htmlArea RTE: disableColorPicker not always honoured
* Fixed bug #14494: htmlArea RTE: backpath is not correctly set
* Follow-up to issue #14494: htmlArea RTE: backpath is not correctly set
* Further follow-up to issue #14494: htmlArea RTE: backpath is not correctly set
2010-05-27 Oliver Hader <[email protected]>
* Follow-up to #14465: Missing argument when rendering language preview in page module
2010-05-26 Jeff Segars <[email protected]>
* Fixed bug #14486: Added missing icons for the new iconset (thanks to Steffen Ritter)
* Added feature #14465: Make use of the new sprite API through the TYPO3 core (thanks to Steffen Ritter)
* Follow-up to feature #14465: Remove extra semicolon at end of line
2010-05-26 Susanne Moog <[email protected]>
* Fixed bug #13443: Wrong image shown in WEB->PERM (thanks to Stephan Kellermayr)
2010-05-26 Ingo Renner <[email protected]>
* Added feature #14463: Add post initialization hook for tslib_cObj
* Follow-up to #14463: Added the new tslib_content_PostInitHook interface to core_autoload.php
* Fixed issue #14480: tslib_cObj->start() sets a member "data", but not "table"
2010-05-26 Steffen Kamper <[email protected]>
* Fixed bug #14394: Better debug output for SQL Explain
* Fixed bug #14466: Bug: SpriteIconApi getSpriteIconForRecord does not find default icon (thanks to Steffen Ritter)
* Follow-up to bug #13379: Sprite Icon API (thanks to Steffen Ritter)
* Follow-up to bug #14324: Feature: Add spriteGeneratorAPI to support the new sprite-icon-api (thanks to Steffen Ritter)
2010-05-25 Stanislas Rolland <[email protected]>
* Fixed bug #14333: htmlArea RTE: justify after CTRL+A not working in Firefox
2010-05-24 Stanislas Rolland <[email protected]>
* Updated htmlArea RTE version to 1.9.3
* Fixed bug #14470: htmlArea RTE: hovering custom colours produces shivering effect
2010-05-24 Benjamin Mack <[email protected]>
* Follow-up to #13379: Sprite Icon API - Removed unused sprites for t3skin (Thanks to Steffen Ritter)
* Follow-up to #13379: Sprite Icon API - Added updated Sprites for t3skin (Thanks to Steffen Ritter)
2010-05-23 Steffen Kamper <[email protected]>
* Follow-up to bug #13868: Integrate TYPO3 donate notice in the backend
* Fixed bug #14387: Updating the CGLs [was: Remove the feature "Enable extensions without review (basic security check)" from EM] (thanks to Lars Houmark)
2010-05-22 Oliver Hader <[email protected]>
* Added feature #13868: Integrate TYPO3 donate notice in the backend
2010-05-22 Benjamin Mack <[email protected]>
* Follow up to #13379: Removed generation parts of Sprite Icon API (Thanks to Steffen Ritter)
* Fixed bug #12923: Javascript error in tmenu_layers.php & gmenu_layers.php (Thanks to Klaus Goessl)
2010-05-22 Steffen Kamper <[email protected]>
* Fixed bug #14191: Install tool lacks hint of how to create ENABLE_INSTALL_TOOL (thanks to Steffen Gebert)
* Fixed bug #14328: Include prototype+scriptaculous using API at the login screen (thanks to Steffen Gebert)
* Added Feature #14324: Add spriteGeneratorAPI to support the new sprite-icon-API (thanks to Steffen Ritter)
2010-05-22 Xavier Perseguers <[email protected]>
* Fixed bug #14175: belog not shown / error when actions: error is selected (thanks to Philipp Thiele)
2010-05-21 Benjamin Mack <[email protected]>
* Fixed bug #14443: Deprecate $TYPO3_CONF_VARS[GFX][TTFLocaleConv]
* Cleaned up #9416: Code Cleanup for lang.php (Thanks to Stefano Kowalke)
* Fixed bug #6555: template.relPathPrefix causes decoding of html-entities in affected attributes (Thanks to Martin Ficzel)
* Fixed bug #13749: IRRE: Inline elements of translated records are not coppied correctly. (Thanks to Albrecht Koehnlein)
2010-05-20 Christian Kuhn <[email protected]>
* Fixed bug #7753: EM warns No XCLASS inclusion code found if you use $GLOBALS['TYPO3_CONF_VARS'] (thanks to Franz Holzinger)
2010-05-19 Stanislas Rolland <[email protected]>
* Follow-up to bug #14413: htmlArea RTE: ExtJS resources are not released in IE when RTE closes
2010-05-18 Benjamin Mack <[email protected]>
* Follow-up to #14277: Removed redundant code / Improve t3lib_compressor
2010-05-18 Ernesto Baschny <[email protected]>
* Follow-up to bug #13670: Wrong variable name causing EM not to show "Extensions found only on this server" on "Import extensions" search result
2010-05-18 Steffen Kamper <[email protected]>
* Fixed bug #14327: Condition misses check for no logged in user
2010-05-17 Stanislas Rolland <[email protected]>
* Fixed bug #14413: htmlArea RTE: ExtJS resources are not released in IE when RTE closes
2010-05-17 Christian Kuhn <[email protected]>
* Fixed bug #14411: Use of deprecated method t3lib_BEfunc::getSetUpdateSignal in impexp
* Follow-up to bug #13670: Fatal in t3lib_querygenerator
* Follow-up to bug #13670: Fatal in fe_adminLib.inc (thanks to Lars Houmark)
2010-05-16 Christian Kuhn <[email protected]>
* Follow-up to bug #13670: #14393 Fatal error in impexp
2010-05-16 Steffen Kamper <[email protected]>
* Follow-up to bug #13670: Performance optimization: change while(list() to foreach()
2010-05-15 Christian Kuhn <[email protected]>
* Fixed bug #14312: Notice undefined index systemLog and undefined constant TYPO3_ERRORHANDLER_MODE (thanks to Martin Müller)
* Fixed bug #14309: Notice undefined index "error" & "debug" in index_ts.php (thanks to Martin Müller)
* Fixed bug #14180: No Message shown when accessing backend if TYPO3_CONF_VARS[BE][adminOnly] = -1 (thanks to Georg Ringer)
2010-05-14 Ernesto Baschny <[email protected]>
* Fixed bug #14337: "The install tool is locked" doesn't send no-cache headers (thanks to Steffen Gebert)
2010-05-14 Steffen Kamper <[email protected]>
* Fixed bug #14339: Better options for deprecation log
* Fixed bug #14375: Rewrite of the debug panel (More Features!, More Stability!, More Usability!) (Stefan Galinski)
* Follow-up to bug #14365: Bug: Install Tool skin is sometimes wrong (thanks to Lars Houmark)
* Fixed bug #14367: Install Tool does not provide a logout possibility (thanks to Lars Houmark)
2010-05-13 Ernesto Baschny <[email protected]>
* Fixed issue #13670: Performance optimization: change while(list() to foreach() (thanks to Georg Ringer and Steffen Gebert)
2010-05-13 Steffen Kamper <[email protected]>
* Fixed bug #12803: Creating or deleting ENABLE_INSTALL_TOOL file saves settings in "User Settings"
* Fixed bug #14341: c&p error in t3lib_div::logDeprecatedFunction
* Fixed bug #14365: Bug: Install Tool skin is sometimes wrong (thanks to Lars Houmark)
* Fixed bug #14336: Merge modules "Cleanup and typo3temp/" of the Install Tool (thanks to Steffen Gebert)
2010-05-13 Patrick Broens <[email protected]>
* Fixed bug #14379: CSS issues for Internet Explorer version 6 and 7 (thanks to Jigal van Hemert)
2010-05-12 Stanislas Rolland <[email protected]>
* Follow-up to bug #14360: htmlArea RTE: Toolbar and context menu styling needs adjustments
* Fixed bug #14374: htmlArea RTE: Language plugin may cause js error on RTE initialization
2010-05-12 Dmitry Dulepov <[email protected]>
* Fixed bug #14052: cache_treelist is out of date after setting hidden=0 (thanks to Steffen Gebert)
2010-05-10 Stanislas Rolland <[email protected]>
* Fixed bug #9455: RTE incorrectly modifies external links and causes problems with subdomains
* Fixed bug #14360: htmlArea RTE: Toolbar and context menu styling needs adjustments
2010-05-07 Steffen Kamper <[email protected]>
* Fixed bug #14335: Install Tool buttons have no hover state (thanks to Steffen Gebert)
2010-05-09 Stanislas Rolland <[email protected]>
* Follow-up to feature #14014: htmlArea RTE should use version numbering method for CSS and JS files
* Fixed bug #14349: htmlArea RTE: Unavailability of hot key map may cause plugin to fail
* Follow-up to feature #14277: Apply gzip compression to htmlArea RTE concatenated js script
* Follow-up to feature #14014: Some htmlArea RTE csss files are not versioned in the FE
2010-05-07 Steffen Kamper <[email protected]>
* Fixed bug #14326: [Performance] Preload ExtJS in BE
* Fixed bug #14288: opendocs can cause duplicate id html errors (thanks to Stefan Galinski)
2010-05-07 Stanislas Rolland <[email protected]>
* Fixed bug #14202: htmlArea RTE: Tables may get lost when using remove format feature
2010-05-07 Susanne Moog <[email protected]>
* Fixed bug #14293: IRRE loading indicator makes label text jump (Thanks to Lars Houmark)
2010-05-07 Benjamin Mack <[email protected]>
* Fixed bug #5003: prefixRelPath() incorrectly changes links to anchors (Thanks to Jigal van Hemert)
2010-05-07 Oliver Hader <[email protected]>
* Fixed bug #13495: Workspace tiled Preview shows same version of Page
2010-05-07 Steffen Kamper <[email protected]>
* Fixed bug #14331: BE search is broken
2010-05-06 Benjamin Mack <[email protected]>
* Fixed bug #14028: Code cleanup in class.t3lib_userauthgroup.php - part 1: foreach loops / variable renaming (Thanks to Kjeld Schumacher)
* Fixed bug #14315: Filelist: AJAX bug with multiple file mounts in the folder tree
* Fixed bug #12429: Renamed "t3lib_tstemplate::procesIncludes" to "processIncludes" due to a misspelling (Thanks to Bernhard Kraft)
* Fixed bug #13996: Hardcoded TYPO3 logo shown in "HELP > About TYPO3" (Thanks to Stephan Kellermayr)
* Fixed bug #13995: Hardcoded TYPO3 logo image shown in "HELP > About Modules" (Thanks to Stephan Kellermayr and Steffen Kamper)
* Fixed bug #14291: TCEforms: Incorrect background color style in type fields with images (Thanks to Stefan Galinski)
* Fixed bug #14316: Updated TYPO3_copyright_year in constants section of config_default.php (Thanks to Steffen Gebert)
* Fixed bug #14217: options.pageTree.showPageIdWithTitle doesn't work in record picker and RTE (Thanks to Reinhard Führicht)
2010-05-06 Susanne Moog <[email protected]>
* Fixed bug #14185: The tt_content.fe_groups field is not placed under the Access Tab (Thanks to Peter Klein & Lars Houmark)
2010-05-05 Benjamin Mack <[email protected]>
* Fixed bug #12470: PHP-5.3 error: function define_syslog_variables() is deprecated (Thanks to Rupert Germann)
* Followup to #13998 / #14298: Missing ">" in HTML source when including jsfunc.validateform.js (Thanks to Lars Houmark)
2010-05-05 Steffen Kamper <[email protected]>
* Fixed bug #14295: Recycler and tcemain->process_cmdmap cannot undelete some records (thanks to Lars Houmark)
* Fixed bug #14307: fe_user passwords are visible in the info popup window in the backend (thanks to Lars Houmark)
2010-05-04 Francois Suter <[email protected]>
* Fixed bug #14255: Navigation title field should also be displayed on shortcuts page (thanks to Steffen Gebert)
2010-05-03 Susanne Moog <[email protected]>
* Follow up to #5500: Load Inline Elements On Demand (thanks to Steffen Ritter)
2010-05-03 Benjamin Mack <[email protected]>
* Release of TYPO3 4.4.0beta2
2010-05-03 Francois Suter <[email protected]>
* Fixed bug #14275: Error handler does not catch exception while connecting to DB
2010-05-03 Steffen Kamper <[email protected]>
* Fixed bug #14282: t3lib_compressor processes JSlibs, even when it's not supposed to to (thanks to Steffen Gebert)
* Fixed bug #14283: Loading scriptaculous with all modules fails with t3lib_compressor (thanks to Steffen Gebert)
* Fixed bug #7795: opendocs: documents are opened without pagetree (thanks to Stefan Galinski)
* Fixed bug #14144: Positioning of toolbar elements broken, especially in Safari (thanks to Stefan Galinski)
2010-05-03 Xavier Perseguers <[email protected]>
* Raised DBAL version from 1.1.4 to 1.1.5
2010-05-02 Xavier Perseguers <[email protected]>
* Raised DBAL version from 1.1.3 to 1.1.4
2010-05-02 Benjamin Mack <[email protected]>
* Followup to #14195: Install icons referenced in install.css did not load anymore
* Updated NEWS.txt to reflect the breaking changes of Extbase
* Fixed bug #14276: tceforms: Title of a record does not use API call to limit the character
* Added feature #13379: Introduced a Sprite Icon API to render icons from sprites (Thanks to Thomas Allmer and Steffen Ritter)
2010-05-02 Steffen Kamper <[email protected]>
* Follow-up to #14277: Improve t3lib_compressor (thanks to Steffen Gebert)
* Fixed bug #14277: Improve t3lib_compressor (thanks to Steffen Gebert)