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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
|
<?php /** * @version $Id: CHANGELOG.php 2623 2006-02-26 04:33:48Z stingrey $ * @package Joomla * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */
// no direct access defined( '_VALID_MOS' ) or die( 'Restricted access' ); ?> 1. Copyright and disclaimer --------------------------- This application is opensource software released under the GPL. Please see source code and the LICENSE file
2. Changelog ------------ This is a non-exhaustive (but still near complete) changelog for Joomla! 1.0, including beta and release candidate versions. Our thanks to all those people who've contributed bug reports and code fixes.
Legend:
* -> Security Fix # -> Bug Fix + -> Addition ^ -> Change - -> Removed ! -> Note
---------------- 1.0.8 Stable Released -- [25-Feb-2006 04:00 UTC] ------------------
This Release Contains following Security Fixes
Medium Level Threat * Hardening of Remember Me login functionality * Protect against real server path disclosure via syndication component * Limit arbitrary file creation via syndication component * Protect against real server path disclosure in mod_templatechooser
* Disallow `Weblink` item from being accessible when 'unpublished' * Disallow `Polls` item from being accessible when 'unpublished' * Disallow `Newfeeds` item from being accessible when category 'unpublished' * Disallow `Weblinks` item from being accessible when category 'unpublished' * Disallow `Content` item from being accessible despite section/category 'access level' * Disallow `Newsfeed` item from being accessible despite category 'access level' * Disallow `Weblink` item from being accessible despite category 'access level' * Disallow `Content` item from being visible despite category 'access level' in `Content Section` view - `Blog - Content Section` & `Blog - Content Section Archive`
* Disallow `Content` items from being viewable when category/section 'unpublished' - mod_newsflash Low Level Threat * Harden frontend Session ID * Harden against multiple Admin SQL Injection Vulnerabilities * Disable ability to enter more than one email address in Contact Component contact form * Harden Contact Component with param option to check for existance of session cookie - enabled by default * Addiotnal check for correct Admin session name
* Disallow access to syndication functionality * Disallow `Newsfeeds` Categories from being accessible when 'unpublished' * Disallow `Contact` Categories from being accessible when 'unpublished' * Disallow `Weblink` Categories from being accessible when 'unpublished' * Disallow `Content Section` from being accessible when section 'unpublished' - `List - Content Section` * Disallow `Content Category` from being accessible when category/section 'unpublished' - `Table - Content Category`
* Disallow `Contact` Categories from being accessible as per category 'access level' * Disallow `Newsfeeds` Categories from being accessible as per category 'access level' * Disallow `Weblinks` Categories from being accessible as per category 'access level' * Disallow `Content Section` from being accessible as per section 'access level' - `List - Content Section` * Disallow `Content Category` from being accessible as per section/category 'access level' - `Table - Content Category` * Disallow `Content Category` from being accessible as per category 'access level' - `Blog - Content Category` & `Blog - Content Category Archive`
* Disallow `Content` item links from being visible as per category/section 'access level' - mod_newsflash, mod_latestnews, mod_mostread
* Disallow Category Search returning items despite section 'access level' & section 'state' * Disallow Contact Search returning items despite 'access level' & category 'state' * Disallow Content Search returning items despite section 'access level' * Disallow Newsfeed Search returnings items despite category 'state' * Disallow Weblink Search returning items despite category 'state'
---
25-Feb-2006 Rey Gigataras # Fixed [topic,40568.0.html] : Conversion of & to & when editing 'new' modules, breaking xhtml compliance # Fixed [topic,40568.0.html] : Itemid=99999999 visible when navigating polls # Fixed artf3630 : Site name printed twice in the popup window title (print, email to friend) ^ Upgraded to TinyMCE 2.0.4 - Depreciated Admin templates - mambo_admin & mambo_admin_blue
24-Feb-2006 Rey Gigataras * SECURITY [ Low Level ]: Add check for correct Admin session name # Fixed HTTP_ACCEPT_ENCODING problems # Fixed incorrect handling of external links with mossef ^ Special Flag to allow different login behaviour of site for Production vs online Demo site
23-Feb-2006 Robin Muilwijk # Fixed [topic,39449.0.html] : typo in menu manager
23-Feb-2006 Rey Gigataras ^ Global Config session life only controls purging of frontend logged in sessions ^ Guests session separately purged at a hardcoded 900 seconds
22-Feb-2006 Rey Gigataras # Fixed artf3591 : Error if unpublish menu item # Fixed [topic,39295.0.html] : SEF handling of custom .htaccess reconfigured urls # Fixed [topic,39295.0.html] : mod_login return value incorrectly returning 'index.php?' if coming from site homepage ^ Frontend Session Tracking cookie uses `Expire at End of Session`, rather than expiry by a set time to resolve issues with incorrect system clocks
21-Feb-2006 Rey Gigataras * SECURITY [ Medium Level ]: Real server path disclosure in mod_templatechooser
# Fixed [topic,39295.0.html] : Incorrect favicon path in installer # Fixed [topic,39295.0.html] : Admin logout does not clear/delete session being logged out ^ Remember Me Cookie amalgamated into a single cookie.
20-Feb-2006 Rey Gigataras # Fixed [topic,39295.0.html] : error in TinyMCE 2.0.3 (toggle fullscreen mode)
20-Feb-2006 Andrew Eddie # Fixed filelist param - would always show list entries related to images for default and do not use
19-Feb-2006 Rey Gigataras # Fixed [topic,36462.0.html] : time check incorrectly being based on local time - rather than server time # Fixed [topic,39103.0.html] : utf-8 encoded newsfeeds in a ISO-8559-1 site
18-Feb-2006 Rey Gigataras # Fixed [topic,39101.0.html] : Newsfeeds do not display
^ PERFORMANCE : General query reduction work ^ PERFORMANCE : Reduce queries used by search bots to load params ^ PERFORMANCE : 'editor-xtd' bot group loaded only once - affect = reduction in queries ^ Refactored session handling code for Admin sessions + session.gc_maxlifetime setting for Admin Sessions
17-Feb-2006 Rey Gigataras # Fixed artf3543 : Rev 2393 Language Manager Error # Fixed [topic,22061.0.html] : Wrapper Autoheight ability set to off by default, as causes javascript errors when used on sites not on your domain # Fixed [topic,30542.0.html] : MySQL 5 support in strict mode # Fixed artf3605 : Spelling error when saving content # Fixed artf3576 : Javascript conflict in mod_wrapper
^ PERFORMANCE : `dynamic` Itemid checks store previous query results - affect = reduction in queries ^ PERFORMANCE : `static` Itemid counters now loads only once - affect = reduction in queries ^ PERFORMANCE : 'content' bot group loaded only once instead of each time content is loaded - affect = reduction in queries ^ PERFORMANCE : individual 'content' bot query to pull params loaded only once instead of each time content is loaded - affect = reduction in queries
+ new Admin Session Life Global Config param, allowing setting of admin session idle logout time + query debug mode to backend
16-Feb-2006 Rey Gigataras # Fixed artf3523 : mosemailcloak issue with mailto params # Fixed : disable mossef bot from working on mailto links # Fixed [topic,36637.0.html] : SEF deactivated relative & absolute url handling # Fixed [topic,36637.0.html] : Session username not correct for those coming from `Remember Me` cookie + PERFORMANCE : Simple check for all bots to determine whether they should process further ^ PERFORMANCE : Reduce queries used by bots to load params - mosemailcloak, mosimage, mosloadposition, mospaging - affect = reduction in queries ^ PERFORMANCE : 'editor-xtd' bot group loaded only when needed - affect = reduction in queries
15-Feb-2006 Rey Gigataras # Fixed artf3527 : "New" Content Link and Image Not Present When Category Empty # Fixed [topic,36462.0.html] : Static Content Start/Finish publishing time is based on server time, not local time # Fixed : Publisher submission message for frontend content editing/submission
14-Feb-2006 Rey Gigataras * SECURITY [ Low Level ]: Disable ability to enter more than one email address in Contact Component contact form # Fixed artf3144 : NULL values from SQL tables not loaded # Fixed [topic,31769.0.html] : $access variable conflict com_content # Fixed [topic,32201.0.html] : mod_related_items urls not xhtml compliant # Fixed [topic,31185.0.html] : heading in pagination not working # Fixed [topic,10947.0.html] : Add Prefix check to installer # Fixed artf3082 : Template preview *still* not available # Fixed artf2925 : mosGetParam has side affects # Fixed [topic,38017.0.html] : Content -> New -> Cancel ^ Upgraded TinyMCE to 2.0.3 & TinyMCE GZip Compressor to 1.0.7
13-Feb-2006 Rey Gigataras * SECURITY [ Medium Level ]: Hardening of Remember Me login functionality * SECURITY [ Low Level ]: Harden Contact Component with param option to check for existance of session cookie - enabled by default
12-Feb-2006 Rey Gigataras * SECURITY [ Low Level ]: Multiple Admin SQL Injection Vulnerabilities * SECURITY [ Low Level ]: Category Search returns items despite section 'access level' & section 'state' * SECURITY [ Low Level ]: Contact Search returns items despite 'access level' & category 'state' * SECURITY [ Low Level ]: Content Search returns items despite section 'access level' * SECURITY [ Low Level ]: Newsfeed Search returns items despite category 'state' * SECURITY [ Low Level ]: Weblink Search returns items despite category 'state' # Fixed artf3391 : Aphostrophes in Category: Edit # Fixed artf3291 : Alert() problem # Fixed artf3188 : Unnecessary table cell in contact.html.php # Fixed artf3121 : css errors in tiny_mce and rhuk_solarflare_ii template # Fixed artf3181 : Task routing class # Fixed artf3400 : showCalendar does not get value of date # Fixed artf3348 : Bold tag overrides css in mod_poll.php # Fixed artf3120 : &and & &link not defined in admin.categories.php # Fixed artf3446 : Problems with mosimage with caption # Fixed artf3100 : Incorrect Response Headers for Missing Pages # Fixed artf3220 : Search bug: No way to update referenced search component # Fixed artf3438 : RSS Feed Created it not base on the same encoding of the content # Fixed artf3108 : Joomla 1.0.7 core SEF bug gives 404 on homepage # Fixed artf3169 : RSS feeds does not work with SEF disabled
11-Feb-2006 Rey Gigataras * SECURITY [ Medium Level ]: Protect against real server path disclosure via syndication component * SECURITY [ Medium Level ]: Limit arbitrary file creation via syndication component # Fixed artf3397 : link to menu and loss of images list # Fixed artf3109 : 1.0.7 "The XML page cannot be displayed ERROR" ob_gzhandler issue # Fixed artf3447 : TinyMCE and relative urls # Fixed artf3183 : Sub-menu items of separators not showing in module menu selection list # Fixed artf3103 : $mosConfig_cachepath not used everywhere # Fixed artf3114 : mod_related_items outputs nothing # Fixed artf3234 : mod_related_items unitialized mosConfig_offset variable # Fixed artf3402 : Missing param in module # Fixed artf3067 : Reopen: Unhandled fragment identifier with core SEF enabled # Fixed [topic,31813.0.html] : new .htaccess gives proper 404s [Steve Graham] + Disable session.use_trans_sid to .htaccess
10-Feb-2006 Rey Gigataras * SECURITY [ Low Level ]: Harden frontend Session ID # Fixed artf3421 : Session cleanup relies on administrator login # Fixed artf3307 : Error in code - non critical, but logout setcookie not working # Fixed artf3126 : Short open PHP tag in pathway.php # Fixed artf3126 : artf3413 : small problem with variable in xml_domit_lite_parser.php # Fixed [topic,34620.0.html] : Excessive Joomla Sessions, and AOL Login Problem [Steve Graham] # Fixed mosWarning() $title error + New Session Type Global Config param
08-Feb-2006 Rey Gigataras * SECURITY [ Medium Level ]: # Fixed : `Content` items viewable when category/section 'unpublished' - mod_newsflash * SECURITY [ Low Level ]: # Fixed : `Content` item links visible despite category/section 'access level' - mod_newsflash, mod_latestnews, mod_mostread # Fixed artf3393 : Latestnews doesn't show static content
07-Feb-2006 Robin Muilwijk # Fixed artf3328, 1.0.7 EN Installation Typo - Step 1 # Fixed artf3401 : Spelling errors in two modules
31-Jan-2006 Rey Gigataras + Additional Contact Component hardening
30-Jan-2006 Rey Gigataras * SECURITY [ Medium Level ]: # Fixed : `Content` item accessible despite section/category 'access level' * SECURITY [ Medium Level ]: # Fixed : `Content Section` view `Content` items visible despite category 'access level' - `Blog - Content Section` & `Blog - Content Section Archive` * SECURITY [ Medium Level ]: # Fixed : `Newsfeed` item accessible despite category 'access level' * SECURITY [ Medium Level ]: # Fixed : `Weblink` item accessible despite category 'access level' * SECURITY [ Low Level ]: # Fixed : `Contact` Categories accessible despite category 'access level' * SECURITY [ Low Level ]: # Fixed : `Newsfeeds` Categories accessible despite category 'access level' * SECURITY [ Low Level ]: # Fixed : `Weblinks` Categories accessible despite category 'access level' * SECURITY [ Low Level ]: # Fixed : `Content Category` view accessible despite section/category 'access level' - `Table - Content Category` * SECURITY [ Low Level ]: # Fixed : `Content Category` view accessible despite category 'access level' - `Blog - Content Category` & `Blog - Content Category Archive` * SECURITY [ Low Level ]: # Fixed : `Content Section` view accessible despite section 'access level' - `Table - Content Section`
^ Contact Items display Authorization block text if category 'access level' denies access ^ Blog pages display Authorization block text if section/category 'access level' denies access 29-Jan-2006 Rey Gigataras * SECURITY [ Medium Level ]: # Fixed : `Weblinks` item accessible when category 'unpublished' ^ Blog pages display Authorization block text if section/category being unpublished
25-Jan-2006 Rey Gigataras * SECURITY [ Low Level ]: # Fixed : No way to disable access to syndication functionality
17-Jan-2006 Rey Gigataras * SECURITY [ Medium Level ]: # Fixed : `Weblink` item accessible when 'unpublished' * SECURITY [ Medium Level ]: # Fixed : `Polls` item accessible when 'unpublished' * SECURITY [ Medium Level ]: # Fixed : `Newfeeds` item accessible when category 'unpublished' * SECURITY [ Low Level ]: # Fixed : 'unpublished' `Newfeeds` Categories accessible * SECURITY [ Low Level ]: # Fixed : 'unpublished' `Contact` Categories accessible * SECURITY [ Low Level ]: # Fixed : 'unpublished' `Weblink` Categories accessible * SECURITY [ Low Level ]: # Fixed : `Content Section` accessible when section 'unpublished' - `List - Content Section` * SECURITY [ Low Level ]: # Fixed : `Content Category` view accessible when category/section 'unpublished' - `Table - Content Category`
---------------- 1.0.7 Released -- [15-Jan-2006 20:00 UTC] ------------------
15-Jan-2006 Rey Gigataras # Fixed : database password being incorrectly overwritten with a blank
---------------- 1.0.6 Released -- [15-Jan-2006 15:00 UTC] ------------------
This Release Contains following Security Fixes
Low Level Threat * Disallow Author from publishing items or changing publish state * Hardened Contact Component against misuse * Added simple filtering control ability to Contact Component * Hardened misuse of Contact Component `email copy` ability when not activated * Hardened misuse of Contact Component `VCard` ability when not activated * `VCard` & `Email Copy` options set to hide by default * Multiple Vulnerabilities in TinyMCE Compressor * Hardened Itemid against misuse * Hide database password in Global Configuration
---
15-Jan-2006 Rey Gigataras * SECURITY [ Low Level ]: Hide database password in Global Configuration # Fixed artf3064 : Warning: Invalid argument supplied mod_fullmenu Line 57 # Fixed artf3063 : Poll Component Output Display Error
14-Jan-2006 Louis Landry # Fixed Caching `Blog` pagination problem
14-Jan-2006 Rey Gigataras * SECURITY [ Low Level ]: disallow Author from publishing items or changing publish state [identified Max Dymond] # Fixed artf3055 : Weblink submit, no email to admin # Fixed artf3045 : Unhandled fragment identifier with core SEF enabled # Fixed artf3032 : 1783: Can't get custom CSS in Tiny MCE # Fixed artf3052 : Contact Component Re-Direct Issue # Fixed artf3043 : Login & Logout redirecting to $mosConfig_live_site # Fixed artf3040 : Site Modules | Display can be duplicated on Pages # Fixed problem with display mod_rssfeed twice on a page ^ Contact Component confirmation now uses mosredireect msg, rather than JS
13-Jan-2005 Andrew Eddie # Fixed bug in database::loadRowList that reutrn assoc and not numerical array # Fixed bug in index2.php where joomlajavascript.js is not included
13-Jan-2006 Rey Gigataras * SECURITY [ Low Level ]: + simple filter check to Contact Component # Fixed artf3038 : Warning: array_search(): Wrong datatype for second argument in # Fixed artf3037 : New 404 tags aren't translated # Fixed artf3035 : Bug with mod_newsflash 12-Jan-2006 Alex Kempkens # Fixed mosFormateDate, handling offset's with value 0
12-Jan-2006 Rey Gigataras * SECURITY [ Low Level ]: changed `Email Copy` param option for new Contacts now set to `hide` # Fixed artf2070 : mosHTML:encoding_converter() breaks with ö # Fixed missing <li> tag in newsfeed component # Fixed artf1487 : Media Manager breaks when illegal characters in uploaded file name # Fixed artf2108 : Saving a parent inside of a child + caching support to `Frontpage` component + missing param for `Table - Weblink Category` - sef handling in mod_search.php as SEF - unnecessary `checked out` check in mod_latestnews.php and mod_mostread.php - unnecessary param variable in mod_latestnews.php
10-Jan-2006 Rey Gigataras * SECURITY [ Low Level ]: Fixed artf2386 : Preventing Spambots through com_contact # Fixed artf2622 : admin.users.php session_start called when a session is already open # Fixed artf2789 : invalid xhtml # Fixed artf2989 : User WYSIWYG editor setting resets after adding new user from backend # Fixed artf2986 : Wrong link to image-icon in weblinks
08-Jan-2006 Johan Janssens * SECURITY [ Low Level ]: Fixed Security Vulnerability in TinyMCE Compressor
08-Jan-2006 Rey Gigataras * SECURITY [ Low Level ]: Fixed artf2950 : Information leak with Vcard hide function * SECURITY [ Low Level ]: changed `VCard` param option for new Contacts now set to `hide` # Fixed DOMIT bugs [identified by sarahk] http://sarahk.pcpropertymanager.com/blog/using-domit-rss/225/ # Fixed artf2793 : New user confirmation link warning on login # Fixed artf2732 : Pagination in the Blog section/category doesnt work # Fixed artf2943 : Incorrect Redirect for Weblinks # Fixed artf2945 : Undefined constant in php_http_exceptions.php
07-Jan-2006 Rey Gigataras # Fixed artf2933 : Pathway problem on Windows
06-Jan-2006 Rey Gigataras ^ changed mod_archive so that no Itemid is assigned, meaning it uses the default Itemid=99999999 # Fixed artf2738 : Incorrect SEF links for archive com_content links # Fixed artf1809 : mospagebreak problem with "Special Characters" # Fixed artf2861 : article_seperator glitch
05-Jan-2006 Rey Gigataras # Fixed artf2825 : RSS module SEF urls
04-Jan-2006 Rey Gigataras * SECURITY [ Low Level ]: Fixed artf2050 : Itemid in index2.php # Fixed Related items Module shows Expired items - Mambo Tracker [#7590] # Fixed artf2185 : Changing weblinks possible for everyone
03-Jan-2006 Andy Miller ^ Updated copyright information for iCandy Junior icons
03-Jan-2005 Rey Gigataras # Fixed XHTML validation error in `Blog` view with decmimal value widths # Fixed XHTML validation error in `Table - Content Category` # Fixed artf2791 : RSS item links not SEF'd # Fixed artf2791 : RSS items have no category # Fixed artf2813 : Media Manager doesn't support ICO files
02-Jan-2006 Rey Gigataras # Fixed artf2802 : All content made bold for Rss module published on the frontpage # Fixed artf2780 : Newsflash Read More bad link # Fixed artf2786 : Newsflash module not picking up "linked title" global setting # Fixed artf2810 : 1.0.x changelog incorrectly states release date of 1.0.5 30-Dec-2005 Rey Gigataras # Fixed `Unlimited` banner impressions option # Fixed artf2776 : Multiple banners not possible # Fixed artf2788 : admin template css errors
29-Dec-2005 Rey Gigataras # Fixed artf2646 : name="" not valid XHTML # Fixed artf2747 : title_alias is missing in mambots # Fixed `Reset Clicks` button not working in admin component `Banner Manager` # Fixed artf2712 : Clicks reset on save
29-Dec-2005 Andrew Eddie ^ SEF error handling throws to new /templates/404.php file # Rolled back changes to database::insertObject + New prototype MySQL 5 driver
24-Dec-2005 Emir Sakic # Fixed a bug with 404 header being returned for homepage when SEF activated # Fixed a bug with all items on frontpage returning Itemid=1 (duplicate content)
---------------- 1.0.5 Released -- [24-Dec-2005 10:00 UTC] ------------------
This Release Contains following Security Fixes
Medium Level Threats * Hardened ability to use the contact component to proliferate spam
---
21-Dec-2005 Andrew Eddie # Fixed slow query in com_content (Author text in a content item is now set to Written By) # Fixed bug in backend poll entry with ' is in option name # Fixed bug where content modified date is not updated on a bluck publish/archive operation + Added TEMPLATEURL to patTemplate preloaded variables ^ patTemplate Translate now recognises 1.0 version language constants
20-Dec-2005 Emir Sakic # Fixed artf2432 : Apostrophe in paths isn't escaped properly
20-Dec-2005 Johan Janssens # Fixed artf2389 : gzip compression not operational # Fixed artf2599 : loosing Itemid afet submitting "ask for new password" # Fixed artf1712 : Search Mambots return duplicate results # Fixed artf2534 : Template chooser no longer able to manage SEF urls / XHTML validation # Fixed artf1410 : 'Special' access menu locks out 'public' menu's articles "read more" content # Fixed artf2595 : Deleted "mass mail" item menu in component menu # Fixed artf2518 : mod_latestnews problem # Fixed artf2591 : mosMakePath problem with mkdir on strato # Fixed artf2665 : Most Read module generates incorrect class for <li> statement # Fixed artf2666 : Pagination Error in Category Manager # Fixed artf2407 : parameter type=mos_category show only "- Select Content Category -"
16-Dec-2005 Andy Miller # Fixed mod_whosonline not rendering list properly
07-Dec-2005 Andrew Eddie + Added database::getAffectedRows to db connectors
10-Dec-2005 Emir Sakic # Fixed artf2517 : "Cancel" the editing of content after "apply" not possible
09-Dec-2005 Emir Sakic # Fixed artf2324 : SEF for components assumes option is always first part of query # Fixed artf1955 : Search results bug
07-Dec-2005 Andrew Eddie # Fixed unitialised array in mosHTML::MenuSelect method + Added mosBackTrace debugging function # Fixed bug in mosDBTable::load where null table values don't overwrite properly
07-Dec-2005 Johan Janssens # Fixed artf2430 : invalid values in tabpane.css # Fixed artf2457 : VCard bug IS a bug # Fixed artf2218 : RSS Newsfeed module generates wrong rendering output # Fixed artf2453 : Random Image Module # Fixed artf2251 : Poll title error # Fixed artf2393 : Original editor cannot open content item if checked out # Fixed artf2323 : overlib_hideform_mini.js parse error # Fixed artf2248 : Incorrect hits count on multipage articles # Fixed artf2342 : getBlogCategoryCount # Fixed artf2464 : Contacts Component image path error # Fixed artf2404 : Contact detail html bug ^ Replaced install.png with transparent image - contributed by joomlashack # Fixed artf2245 : RSS not showing enclosure tags # Fixed artf2247 : RSS newsfeed on Frontend missing link # Fixed bug in Domit lite parser # Fixed mosMail() is missing "ReplyTo:" field to avoid anti-spam rules (SPF) # Fixed Small typo in mosBindArrayToObject
06-Dec-2005 Alex Kempkens # Fixed artf2434: Typo in database.php checkout function line 1050 # Fixed artf2398 : Parameter Text Area field name
06-Dec-2005 Johan Janssens # Fixed artf2418 : Banners Client Manager Next Page Issue: Joomla 1.04 # Fixed artf2156 : memory exhastion error in joomla.xml.php # Fixed artf2378 : mosCommonHTML::CheckedOutProcessing not checking if the current user has checked out the document # Fixed artf1948 : Pagination problem still exists ^ Upgraded TinyMCE Compressor [1.0.4] ^ Upgraded TinyMCE [2.0.1]
01-Dec-2005 Andrew Eddie # Fixed nullDate error in mosDBTable::checkin method # Removed $migrate global in mosDBTable::store method # Fixed some MySQL 5 issues (still very unreliable) + Component may force frontend application to include joomla.javascript.js by: $mainframe->set( 'joomlaJavascript', 1 );
01-Dec-2005 Andrew Eddie # Fixed limit error in sections search bot # Bug in gacl_api::add_group query [c/o Mambo bug #8199] # Search highlighting fails when a "?" is entered [c/o Mambo bug #8260]
30-Nov-2005 Emir Sakic + Added 404 handling for missing content and components + Added 404 handling to SEF for unknown files
30-Nov-2005 Andrew Eddie # Site templates allowed to have custom index2.php (fixes problems where custom code is required in index2)
29-Nov-2005 Andrew Eddie # Fixed artf2258 : Parameter tooltips missing in 1.0.4
28-Nov-2005 Andrew Eddie # Fixed artf2329 : mosMainFrame::getBasePath refers to non-existant JFile class. # Fixed artf2246 : Error in frontend.html.php # Fixed artf2190 : mod_poll.php modification # Fixed artf2292 : [WITH FIX] Sql query missing hits
24-Nov-2005 Emir Sakic # Fixed artf2225 : Email / Print redirects to homepage # Fixed artf1705 : Not same URL for same item : duplicate content
23-Nov-2005 Johan Janssens # Fixed : Content Finish Publishing & not authorized
22-Nov-2005 Marko Schmuck # Fixed artf2240 : 1.0.4 URL encoding entire frontend? # Fixed artf2222 : ampReplace in content.html.php + Versioncheck for new_link parameter for mysql_connect.
22-Nov-2005 Levis Bisson # Fixed artf2221 : 1.0.4: includes/database.php faulty on PHP < 4.2.0 # Fixed artf2219 : Bug in pageNavigation.php - added "if not define _PN_LT or _PN_RT"
22-Nov-2005 Johan Janssens # Fixed artf2224 : Problem with Media Manager # Fixed : Can't create new folders in media manager
---------------- 1.0.4 Released -- [21-Nov-2005 10:00 UTC] ------------------
This Release Contains following Security Fixes
Critical Level Threat * Potentional XSS injection through GET and other variables * Hardened SEF against XSS injection
Low Level Threat * Potential SQL injection in Polls modules through the Itemid variable * Potential SQL injection in several methods in mosDBTable class * Potential misuse of Media component file management functions * Add search limit param (default of 50) to `Search` Mambots to prevent search flooding
---
20-Nov-2005 Levis Bisson # Fixed Artifact artf1967 displays with an escaped apostrophe in both title and TOC.
20-Nov-2005 Emir Sakic * SECURITY [ Critical Level ]: Hardened SEF against XSS injection
19-Nov-2005 Levis Bisson # replaced charset=utf-8 to charset=iso-8859-1 in language file
19-Nov-2005 Andrew Eddie * SECURITY [ Critical Level ]: Fixed XSS injection of global variable through the _GET array
17-Nov-2005 Johan Janssens ^ Replaced install.png with new image - Reverted artf2139 : admin menu xhtml + Added clone function for PHP5 backwards compatibility
16-Nov-2005 Rey Gigataras # Fixed artf2137 : editorArea xhtml # Fixed artf2139 : admin menu xhtml # Fixed artf2136 : Admin menubar valid xhtml # Fixed artf2135 : Admin invalid xhtml # Fixed artf2140 : mosMenuBar::publishList # Fixed artf2027 : uploading images from custom component
13-Nov-2005 Rey Gigataras # PERFORMANCE: Fixed artf1993 : Inefficient queries in com_content # Fixed artf2021 : artf1791 : Failed Login results in redirect to referring page # Fixed artf2021 : appendMetaTag() prepends instead of appends # Fixed artf1981 : incorrect url's at next/previous links at content items # Fixed artf2079 : SQL error in category manager thru contact manager # Fixed artf1586 : .htaccess - RewriteEngine problem # Fixed artf1976 : Check for custom icon in mod_quickicon.php
11-Nov-2005 Andy Miller # Fixed issue with RSS module not displaying inside module rendering wrapper
10-Nov-2005 Rey Gigataras # Fixed contact component dropdown select category bug
07-Nov-2005 Rey Gigataras # Fixed mod_quickicon `redeclaration of function` error possibilities
07-Nov-2005 Johan Janssens # Fixed artf1648 : tinyMCE BR and P elements # Fixed artf1700 : TinyMCE doesn't support relative URL's for images
07-Nov-2005 Andrew Eddie * SECURITY [ Low Level ]: Fixed artf1978 : mod_poll SQL Injection Vulnerability * SECURITY [ Low Level ]: Fixed SQL injection possibility in several mosDBTable methods * SECURITY [ Low Level ]: Fixed malicious injection into filename variables in com_media ^ mosDBTable::publish_array renamed to publish ^ mosDBTable::save no longer updates the ordering (must now be done separately)
06-Nov-2005 Rey Gigataras * SECURITY [ Low Level ]: Add search limit param (default of 50) to `Search` Mambots to prevent search flooding # Fixed custom() & customX() functions in menu.html.php no checking for image in /administrator/images/
04-Nov-2005 Rey Gigataras # Fixed artf1953 : Page Class Suffix in Contacts component # Fixed artf1945 : mosToolTip not generating valid xhtml
03-Nov-2005 Rey Gigataras + modduleclass_sfx support to mod_poll # Fixed artf1902 : Incorrect number of table cells in mod_poll
03-Nov-2005 Samuel Moffatt # Fixed bug which prevented component uninstall if another XML file was in the directory
01-Nov-2005 Rey Gigataras # Fixed artf1888 : linkable [category|section] URL incorrect # Fixed artf1620 : Hardcoded words in pdf.php # Fixed artf1887 : Content: Bug in creation date generation
31-Oct-2005 Johan Janssens # Fixed artf1277 : News Feed Display Bad Accent character
31-Oct-2005 Rey Gigataras # Fixed artf1739 : Problem with the menuitem type url and assigned templates and modules # Fixed artf1574 : Who is online after update to Joomla 1.0.3 no more work correctly # Fixed artf1666 : Notice: on component installation # Fixed artf1573 : Manage Banners | Error in Field Name # Fixed artf1597 : Small bug in loadAssocList function in database.php # Fixed artf1832 : Logout problem # Fixed artf1769 : Undefined index: 2 in includes/joomla.php on line 2721 # Fixed artf1749 : Email-to-friend is NOT actually from friend # Fixed artf1591 : page is expired at installation # Fixed artf1851 : 1.0.2 copy content has error # Fixed artf1569 : Display of mouseover in IE gives a problem with a dropdown-box # Fixed artf1869 : Poll produces MySQL-Error when accessed via Component Link # Fixed artf1694 : 1.0.3 undefined indexes filter_sectionid and catid on "Add New Content" # Fixed artf1834 : English Localisation # Fixed artf1771 : Wrong mosmsg # Fixed artf1792 : "Receive Submission Emails" label is misleading # Fixed artf1770 : Undefined index: HTTP_USER_AGENT
30-Oct-2005 Rey Gigataras ^ Upgraded TinyMCE Compressor [1.02] ^ Upgraded TinyMCE [2.0 RC4]
27-Oct-2005 Johan Janssens # Fixed artf1671 : Media Manager # Fixed artf1814 : Tab Class wrong # Fixed artf1086 : Icons at the control panel fall apart
26-Oct-2005 Samuel Moffatt # Fixed bug where a new database object with the same username, password and host but different database name would kill Joomla!
25-Oct-2005 Johan Janssens # Fixed artf1733 : $contact->id used instead of $Itemid # Fixed artf1654 : base url above title tag # Fixed artf1738 : Registration - javascript alert
23-Oct-2005 Rey Gigataras # Fixed artf1695 : Show Empty Categories in Section does not work # Fixed artf1710 : Unnecessary queries (optimization) # Fixed artf1711 : Missing whitespace in search results # Fixed artf1706 : Mambo logo not removed from admin images # Fixed artf1708 : Search CMT: Hardcoded date format # Fixed artf1689 : Joomla! Installer - Wording still not correct # Fixed artf1692 : email and print buttons (maybe also the PDF) does not validate
19-Oct-2005 Andrew Eddie # Fixed missing autoclear in "list-item" stock template
19-Oct-2005 Rey Gigataras # Fixed artf1577 : MenuLink Blog section error
19-Oct-2005 Levis Bisson Applyed Feature Requests: ^ Artifact artf1282 : Easier sorting of static content in creating menu links ^ Artifact artf1162 : Remove hardcoding of <<, <, > and >> in pageNavigation.php
---------------- 1.0.3 Released -- [14-Oct-2005 10:00 UTC] ------------------
Contains following Security Fixes Medium Level Threat * Fixed SQL injection bug in content submission (thanks Dead Krolik)
Low Level Threat * Fixed securitybug in admin.content.html.php when 2 logged in and try to edit the same content * Fixed Search Component flooding, by limiting searching to between 3 and 20 characters * Fixed artf1405 : Joomla shows Items to unauthorized users
-------
14-Oct-2005 Rey Gigataras # Fixed edit icon not showing on frontpage # Fixed artf1553 : database.php fails to pass resource id into mysql_get_server_info() call # Fixed artf1560 : Install1.php doesn't enforce rule against old_ table prefix
13-Oct-2005 Andy Miller # Fixed artf1504 : rhuk_solarflare_ii Template | Menus with " not displaying correctly
13-Oct-2005 Rey Gigataras # Fixed duplicated module creation in install # Fixed XHTML issue in rss feed module # Fixed XHTML issue in com_search # Fixed artf1550 : Properly SEFify com_registration links # Fixed artf1533 : rhuk_solarflare_ii 2.2 active_menu # Fixed artf1354 : Can't create new user # Fixed artf1433 : Images in Templates # Fixed artf1531 : RSS Feed showing wrong livesite URL
12-Oct-2005 Marko Schmuck * SECURITY [ Low Level ]: Fixed security bug in admin.content.html.php when 2 logged in and try to edit the same content
12-Oct-2005 Johan Janssens # Fixed artf1266 : gzip compression conflict # Fixed artf1453 : Weblink item missing approved parameter # Fixed artf1452 : Error deleting Language file # Fixed artf1373 : Pagination error
12-Oct-2005 Rey Gigataras ^ Core now automatically calculates the offset between yourself and the server # Fixed bug in Global Config param `Time Offset` # Fixed artf1414 : Missing images in HTML_toolbar # Fixed artf1513 : PDF format does not work at version 1.0.2
11-Oct-2005 Rey Gigataras * SECURITY [ Low Level ]: Fixed Search Component flooding, by limiting searching to between 3 and 20 characters ^ Blog - Content Category Archive will no longer show dropdown selector when coming from Archive Module # Fixed artf1470 : Archives not working in the front end # Fixed artf1495 : Frontend Archive blog display # Fixed artf1364 : TinyMCE loads wrong template styles # Fixed artf1494 : Template fault in offline preview # Fixed artf1497 : mosemailcloak adds trailing space # Fixed artf1493 : mod_whosonline.php
09-Oct-2005 Rey Gigataras * SECURITY [ Medium Level ]: Fixed SQL injection bug in content submission * SECURITY [ Low Level ]: Fixed artf1405 : Joomla shows Items to unauthorized users # Fixed artf1454 : After update email_cloacking bot is always on # Fixed artf1447 : Bug in mosloadposition mambot # Fixed artf1483 : SEF default .htaccess file settings are too lax # Fixed artf1480 : Administrator type user can loggof Super Adminstrator # Fixed artf1422 : PDF Icon is set to on when it should be off # Fixed artf1476 : Error at "number of Trashed Items" in sections # Fixed artf1415 : Wrong image in editList() function of mosToolBar class
08-Oct-2005 Johan Janssens # Fixed artf1384 : tinyMCE doesnt save converted entities
07-Oct-2005 Andy Miller # Fixed tabpane css font issue
07-Oct-2005 Johan Janssens # Fixed artf1421 : unneeded file includes\domit\testing_domit.php
07-Oct-2005 Andy Stewart # Fixed artf1382 : Added installation check to ensure "//" is not generated via PHP_SELF # Fixed artf1439 : Used correct ErrorMsg function and updated javascript redirect to remove POSTDATA message # Fixed artf1400 : Added a check of $other within com_categories to skip section exists check if set to "other"
05-Oct-2005 Robin Muilwijk # Fixed artf1366 : Typo in admin, Adding a new menu item - Blog Content Category
---------------- 1.0.2 Released -- [02-Oct-2005 16:00 UTC] ------------------
02-Oct-2005 Rey Gigataras ^ Added check to mosCommonHTML::loadOverlib(); function that will stop it from being loaded twice on a page # Fixed Content display not honouring Section or Category publish state # Fixed artf1344 : Link to menu shows wrong menu type # Fixed artf1189 : Long menu names get truncated, duplicate menus made # Fixed artf1192 : Unpublished Bots # Fixed artf1223 : Error with Edit items in categories and sections # Fixed artf1219 : Joomla Component Module displays Error! # Fixed artf1183 : Section module: Still "no items to display" # Fixed artf1241 : Editing content fails with MySQL 5.0.12b # Fixed artf1306 : modules - parameters of type text not stored correctly
01-Oct-2005 Andy Miller # Fixed base href in Content Preview for broken images
01-Oct-2005 Johan Janssens ^ Updated TinyMCE editor to version RC 3 # Fixed artf1221 : Unable to Submit Content (still not working post-patch) # Fixed artf1108 : Tooltips on mouseover causes parameter panel to widen # Fixed artf1217 : WYSIWYG-Editor and mospagebreak with 2 parameters
01-Oct-2005 Andy Stewart # Fixed artf1305 - Added a check within mosimage mambot for introtext being hidden # Fixes artf1343 - Removed xml declaration at top of gpl.html
01-Oct-2005 Arno Zijlstra ^ Changed OSM banner 2 a little to show banner changing
01-Oct-2005 Levis Bisson # Fixed artf1311 : Banners not showing / returning PHP error # Fixed artf1319 : Banners not showing in frontend / admin
30-Sep-2005 Andy Miller # Fixed poor rendering of fieldset with solarflare2 ^ Updated solarflare2 template with new colors and logos ^ Moved modules to divs, and shuffled pathway to give more button room ^ Updated favicon and other Joomla! logos for admin # Fixed alignment of footer in admin for safari/opera
30-Sep-2005 Andy Stewart + Updated installation routine to recognise port numbers other than 80 # Fixed artf1293 : added $op=mosGetParam so sendmail is called when running globals.php-off
30-Sep-2005 Rey Gigataras ^ Module Manager `position` dropdown ordering alphabetically ^ Ability to Hide feed title for `New` modules used to display feeds ^ Content Items `New` button sensitive to dropdown filters # Fixed Seach Module not using Itemid of existng `Seach` component menu item # Fixed `Link to Menu` problem with Sections menu ordering # Fixed `Link to Menu` problem with Category = `Content Category` # Fixed artf1300 : PDF shows Author name despite setting content item
30-Sep-2005 Levis Bisson + Added UTF-8 support # Fixed tooltips empty links # Fixed artf1265 : url in 'edit-menue-item' of submenues is wrong # Fixed artf1277 : News Feed Display Bad Accent character
29-Sep-2005 Arno Zijlstra # Fixed publish/unpublish select check in contacts
29-Sep-2005 Rey Gigataras # Fixed artf1276 : tiny mce background # Fixed artf1281 : Bad name of XML file # Fixed artf1180 : Call-by-reference warning when editing menu # Fixed artf1188 : includes/vcard.class.php uses short open tags
29-Sep-2005 Levis Bisson # Fixed artf1274 : Module display bug when using register/forgot password links # Fixed artf1238 : header("Location: $url")- some servers require an absolute URI
28-Sep-2005 Levis Bisson # Fixed artf1250 : Order is no use when many pages # Fixed artf1254 : Unable to delete when count > 1 # Fixed artf1248 : Invalid argument supplied for 3P modules
27-Sep-2005 Arno Zijlstra # Fixed artf1253 : Apply button image path # Fixed artf1240 : WITH FIX: banners component - undefined var task # Fixed artf1242 : Problem with "Who's online" # Fixed artf1218 : 'Search' does not include weblinks?
25-Sep-2005 Emir Sakic # Fixed artf1185 : globals.php-off breaks pathway # Fixed artf1196 : undefined constant categoryid # Fixed artf1216 : madeyourweb no </head> TAG
24-Sep-2005 Rey Gigataras ^ artf1214 : pastarchives.jpg seems unintuitive.
22-Sep-2005 Rey Gigataras + Added Version Information to bottom of joomla_admin template, with link to 'Joomla! 1.0.x Series Information' # Fixed artf1175 : Create catagory with selection of Section # Fixed artf1179 : Custom RSS Newsfeed Module has nested <TR>
---------------- 1.0.1 Released -- [21-Sep-2005 16:30 UTC] ------------------
21-Sep-2005 Rey Gigataras # Fixed artf1157 : Section module: Content not displayed, wrong header # Fixed artf1159 : Can't cancel "Submit - Content" menu item type form # Fixed artf1172 : "Help" link in Administration links to Mamboserver.com # Fixed artf1171 : mod_related_items shows all items twice # Fixed artf1167 : Component - Search # Fixed [RC] incorrect redirect when cancelling from Frontend 'Submit - Content' # Fixed undefined variable in Trash Manager # Fixed [RC] `Trash` button when no item selected # Fixed [RC] `New` Menu Item Type `Next` button bug
20-Sep-2005 Levis Bisson ^ added a chmod to the install unlink function # Fixed artf1150 : the created_by on initial creation of Static Content Item
20-Sep-2005 Marko Schmuck ^ Changed Time Offsets to hardcoded list with country/city names
20-Sep-2005 Rey Gigataras # Fixed /installation/ folder check # Fixed artf1153 : Quote appears in com_poll error # Fixed artf1151 : empty span # Fixed artf1089 : multile select image insert reverses list order # Fixed artf1138 : Joomla allows creation of double used username # Fixed artf1133 : There is no install request to make /mambot/editor writeable
19-Sep-2005 Andrew Eddie # Fixed incorrect js function in patTemplate sticky and ordering templates/links
19-Sep-2005 Rey Gigataras ^ Changed Overlib styling when creating new menu items ^ Additional Overlib info for non-image files and directories ^ 'Cancel' button for Media Manager ^ Option to run TinyMCE in compressed mode - off by default # Fixed artf1111 : mosShowHead and the order of headers # Fixed artf1117 : database.php - bcc # Fixed artf1114 : database.php _nullDate # Fixed TinyMCE errors caused by use of compressed tinymce_gzip.php [artf1088||artf1034||artf1090||artf1044] # Installed Editor Mambots are now published by default # Fixed error in RSS module # Fixed artf1106 : Default Editor Will Not Take Codes Like Java Script # Fixed delete file in Media Manager
18-Sep-2005 Arno Zijlstra # Fixed artf1084 : <br> stays in empty content # Fixed artf1101: Typo in Global Config
18-Sep-2005 Andrew Eddie # Fixed issues in patTemplate Translate Function and Modifier # Fixed issue with patTemplate variable for Tabs graphics
18-Sep-2005 Rey Gigataras # Fixed artf1046 : Menu Manager Item Publishing # Fixed artf1036 : newsflash error when logged in in frontend # Fixed artf1033 : madeyourweb template logo path # Fixed artf1039 : & to & translation in menu and contenttitle # Fixed PHP5 passed by reference error in admin.content.php # Fixed artf1068 : live bookmark link is wrong # Fixed artf1030 : Bug Joomla 1.0.0 Stable (un)publishing News Feeds # Fixed artf1048 : Custom Module Bug # Fixed artf1080 : Joomla! Installer # Fixed artf1050 : error in sql - database update # Fixed artf1081 : com_categories can't edit category when clicking hyperlink # Fixed artf1053 : Can not unassign template # Fixed artf1079 : com_weblinks can't edit links # Fixed artf1029 : Site -> Global Configuration = greyed out top menu # Fixed artf1064 : Deletion of Modules and Fix # Fixed artf1052 : Double Installer Locations # Fixed artf1051 : Copyright bumped to the right of the site # Fixed artf1059 : component editor bug # Fixed artf1041 : mod_mainmenu.xml: escape character for apostrophe missing # Fixed artf1040 : category manager not in content-menu
17-Sep-2005 Levis Bisson # Fixed artf1037: Media Manager not uploading # Fixed artf1025: Registration admin notification # Fixed artf1043: Template Chooser doesn't work # Fixed artf1042: Template Chooser shows rogue entry
---------------- 1.0.0 Released -- [17-Sep-2005 00:30 UTC] ------------------
Contains following Security Fixes Medium Level Threat * Fixed SQL injection bugs in user activation (thanks Enno Klasing)
Low Level Threat * Fixed [#6775] Display of static content without Itemid
-------
16-Sep-2005 Andrew Eddie # Fixed: 1014 : & amp ; in pathway # Fixed: Missing space in mosimage IMG tags # Fixed: Incomplete function call - mysql_insert_id() + Added nullDate handling to database class + Added database::NameQuote function for quoting field names # Fixed: com_checkin to properly use database class # Fixed: Missed stripslashes in`global configuration - site` + Added admin menu item to clear all caches (for 3rd party addons)
16-Sep-2005 Emir Sakic # Fixed sorting by author on frontend category listing + Added time offset to copyright year in footer # Fixed spelling in sam # Reflected some file name changes in installer CHMOD # Fixed bugs in paged search component
16-Sep-2005 Alex Kempkens + template contest winner 'MadeYourWeb' added
16-Sep-2005 Rey Gigataras + Pagination Support for Search Component ^ Ordering of Toolbar Icons/buttons now more consistent ^ Frontend Edit, status info moved to an overlib ^ Search Component converted to GET method # Fixed artf1018 : Warning Backend Statistic # Fixed artf1016 : Notice: RSS undefined constant # Fixed artf1020 : Hide mosimages in blogview doesn't work # Various Search Component Fixes # Fixed Search Component not honouring Show/Hide Date Global Config setting # Fixed [#6668] No static content edit icon for frontend logged in author # Fixed [#6710] `Link to menu` function from components Category not working # Fixed [#7011] Subtle bug in saveUser() - admin.users.php # Fixed [#7120] Articles with `publish_up` today after noon are shown with status `pending` # Fixed [#6669] mosmail BCC not working, send as CC # Fixed [#7422] Weblink submission emails # Fixed [#7196] mosRedirect and Input Filter CGI Error # Fixed [#6814] com_wrapper Iframe Name tag / relative url modifications # Fixed [#6844] rss version is wrong in the Live Bookmark feeds # Fixed [#7120] Articles with `publish_up` today after noon are shown with status `pending` # Fixed [#7161] Apparently unncessary code in sendNewPass - registration.php
15-Sep-2005 Andy Miller ^ Fixed some width issues with Admin template in IE ^ Fixed some UI issues with Banners Component ^ Added a default header image for components that don't specify one
15-Sep-2005 Andrew Eddie - Removed unused globals from joomla.php + Added mosAbstractLog class
15-Sep-2005 Rey Gigataras + added `Apply` button to frontend Content editing ^ Added publish date to syndicated feeds output [credit: gharding] ^ Added RSS Enclosure support to feedcreator [credit: Joseph L. LeBlanc] ^ Added Google Sitemap support to feedcreator ^ Modified layout of Media Manager ^ Added Media Manager support for XCF, ODG, ODT, ODS, ODP file formats # Fixed use of 302 redirect instead of 301 # Content frontend `Save` Content redirects to full content view # Fixed Wrapper auto-height problem # Queries cleaned of incorrect encapsulation of integer values # Fixed Login Component redirection [credit: David Gal]
15-Sep-2005 Arno Zijlstra ^ changed tab images to fit new color ^ changed overlib colors
14-Sep-2005 Rey Gigataras ^ Ugraded TinyMCE [2.0 RC2] ^ Param tip style change to dashed underline # Queries cleaned of incorrect encapsulation of integer values
14-Sep-2005 Andrew Eddie # Added PHP 5 compatibility functions file_put_contents and file_get_contents + Added new version of js calendar + mosAbstractTasker::setAccessControl method + mosUser::getUserListFromGroup + mosParameters::toObject and mosParameters::toArray
13-Sep-2005 Andrew Eddie ^ Rationalised global configuration handling # Fixed polls access bug # Fixed module positions preview to show positions regardless of module count ^ Modified database:setQuery method to take offset and record limit + Added alternative version of globals.php that emulates register_globals=off # Added missing parent_id field from mosCategory class
12-Sep-2005 Rey Gigataras + Per User Editor selection # Module styling applied to custom/new modules # Fixed Agent Browser bug
12-Sep-2005 Andrew Eddie + New onAfterMainframe event added to site index.php + Added dtree javascript library + Added some extra useful toolbar icons + Added css for fieldsets and legends and some 1.1 admin style formating + Added mosDBTable::isCheckedOut() method, applied to components # fixed bug in typedcontent edit - checked out is done before object load and always passes ^ Updated Help toolbar button to accept component based help files ^ Updated version class with new methods + Added support for params file to have <mosparams> root tag
12-Sep-2005 Andy Stewart # Fixed issue with new content where Categories weren't displayed for sections
12-Sep-2005 Andrew Eddie ^ Upgrade DOMIT! and DOMIT!RSS (fixes issues in PHP 4.4.x) + Added database.mysqli.php, a MySQL 4.1.x compatible version + Added [Check Again] button to installation check screen ^ Changed web installer to always use the database connector # Fixed PHP 4.4 issues with new objects returning by reference
11-Sep-2005 Rey Gigataras + Output Buffering for Admin [pulled from Johan's work in 1.1] + Loading of WYSIWYG Editor only when `editorArea` is present [pulled from Johan's work in 1.1] ^ Upgraded JSCookMenu [1.4.3] ^ Upgraded wz_tooltip [3.34] ^ Upgraded Overlib [4.21] ^ editor-xtd mosimage & mospagebreak button hidden on category, section & module pages # Poll class $this-> bug # Fixed change creator dropdown to exclude registered users (who do not have author rights)
11-sep-2005 Arno Zijlstra + Added offlinebar.php ^ Changed site offline check ^ Cosmetic change to offline.php
11-Sep-2005 Andrew Eddie + Added sort up and down icons + Added mosPageNav::setTemplateVars method
10-Sep-2005 Rey Gigataras + `Submit - Content` menu type [credit: Jason Murpy]
09-Sep-2005 Andy Miller ^ made changes to new joomla admin template ^ changed login lnf to match new admin template ^ removed border and width, set padding on div.main in admin ^ changed Force Logout text
09-Sep-2005 Alex Kempkens ^ changed mosHTML::makeOption to handle different coulmn names ^ corrected several calls from makeOption in order to become multi lingual compatible ^ corrected little fixes in query handling in order to get multi lingual compatible + Added system bot's for better integration of ml support, ssl & multi sites
08-Sep-2005 Rey Gigataras + Added back Sys Info link in menubar + Added Changelog link to Help area ^ Cosmetic change to Toolbar Icon appearance ^ Cosmetic change to QuickIcon appearance ^ Toolbar icons now 'coloured' no longer 'greyed out' ^ Dropdown menu now shows on edit pages but is inactive # Fixed Newsfeed component generates image tag instead of img tag # Fixed Joomlaxml: tooltips need to use label instead of name # Fixed One parameter too many in orderModule call in admin.modules.php # Fixed inabiility to show/hide VCard # Fixed Mambot Manager filtering
08-Sep-2005 Alex Kempkens + mosParameter::_mos_filelist for xml parameters ^ mos_ table prefix to jos_ in installation and in some other files. + added category handling for contact component + added color adapted joomla_admin template
07-Sep-2005 Andrew Eddie # Added label tags to mod_login (WCAG compliance) # Added label tags to com_contact (WCAG compliance) # Added label tags to com_search (WCAG compliance) # Added label tag support to mosHTML::selectList (WCAG compliance) # Added label tag support to mosHTML::radioList (WCAG compliance)
01-Sep-2005 Andrew Eddie + Added article_separator span after a content item * SECURITY [ Critical Level ]: Hardened mosGetParam by using phpInputFilter for NO_HTML mode + Added new mosHash function to produce secure keys * SECURITY [ Low Level ]: Hardened Email to Friend form
31-Aug-2005 Andrew Eddie + Added setTemplateVars method to admin pageNavigation class ^ Added auto mapping function to mosAbstractTasker constructor + Added patHTML class for patTemplate utility methods ^ Upgraded patTemplate library ! patTemplate::createTemplate has changed parameters - Removed requirement to accept GPL on installation # Fixed bug in Send New Password function - mail from not defined # Fixed undefined $row variable in wrapper component # Fixed undefined $params in contacts component - Removed unused getids.php - Removed redundant whitespace ^ Convert 4xSpace to tab
08-Aug-2005 Andrew Eddie * SECURITY [ Medium Level ]: Fixed SQL injection bugs in user activation (thanks Enno Klasing) ^ Encased text files in PHP wrapper to help obsfucate version info # Changed admin session name to hash of live_site to allow you to log into more than one Joomla! on the same host # Fixed hardcoded (c) character in web installer files # Fixed slow query in admin User Manager list screen # Fixed bug in poll stats calculation # Updated bug fixes in phpMailer class # Fixed login bug for nested Joomla! sites on the same domain
02-Aug-2005 Alex Kempkens * SECURITY [ Low Level ]: Fixed [#6775] Display of static content without Itemid # Fixed [#6330] Corrected default value of field
----- Derived from Mambo 4.5.2.3 circa. 17 Aug 12005 -----
|