This repository was archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathChangeLog
More file actions
1344 lines (1084 loc) · 67.7 KB
/
ChangeLog
File metadata and controls
1344 lines (1084 loc) · 67.7 KB
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
2020-12-26 Stanislas Rolland <typo3AAAA(arobas)sjbr.ca>
* Resolves #93067: Uploading an image in the frontend is not possible
* Resolves #93015: Typos in some variables declarations
2020-11-22 Stanislas Rolland <typo32020(arobas)sjbr.ca>
* Resolves #92901: Avoid exception with LocalizationUtility
* Update version to 7.0.4
2020-11-21 Stanislas Rolland <typo32020(arobas)sjbr.ca>
* Resolves #92774: Reference to deprecated TCA renderMode=checkbox
2020-10-20 Stanislas Rolland <typo32020(arobas)sjbr.ca>
* Resolves #92606: Typos in SetfixedActionController
2020-10-19 Stanislas Rolland <typo32020(arobas)sjbr.ca>
* Resolves #92600: Typo in SetfixedActionController
* Update version to 7.0.2
2020-10-17 Stanislas Rolland <typo32020(arobas)sjbr.ca>
* Resolves #92322: TYPO3 10.4 Support
* Update documentation
* Update version to 7.0.0
2020-10-04 Stanislas Rolland <typo32020(arobas)sjbr.ca>
* Resolves #92322: TYPO3 10.4 Mailer Support
2020-10-02 Stanislas Rolland <typo32020(arobas)sjbr.ca>
* Resolves #92322: TYPO3 10.4 Support
2020-06-06 Stanislas Rolland <typo32020(arobas)sjbr.ca>
* Resolves #91601: Remove dependency on EXT:rsaauth
* Resolves #91602: Migrate configuration from EXTCONF to EXTENSIONS
* Resolves #91603: Add Zurb Foundation default template
* Resolves #91604: Cleanup composer.json and ext_emconf.php
2018-11-03 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #86942: New subscription fails with exception in getDefaultHashInstance
* Update version to 6.0.2
2018-11-03 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #86832: Table 'cache_md5params' doesn't exist
* Update version to 6.0.1
2018-10-28 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #86784: Error during installation when extension filemetadata is not installed
2018-10-24 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #86736: Removing all selectable user groups was not possible
* Update version to 5.1.1
* Resolves #86724: Migrate to TYPO3 9 LTS
* Update version to 6.0.0
2018-10-23 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #85925: PHP codeinspection returns errors
* Resolves #84694: Backslash missing in user image preview link path
* Resolves #84569: Misleading frontend output while deleting images in EDIT mode
* Resolves #86726: usergroup field is required when allowUserGroupSelection is set
2018-04-04 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #84605: PHP Warning: count() in SJBR\SrFeuserRegister\Request\Parameters
2018-04-02 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #84076: Honour TS setup delete = 0
* Resolves #84077: Language label overrides for select fields not respected in forms
* Resolves #84087: Required custom radio field not validated correctly
2018-02-09 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #83833: Salutation does not match in registration and response for "Ms" and "Mrs"
* Resolves #77055: Password again may be entered alone without error being raised
* Resolves #65630: Enable HTML5 input types
* Update version to 5.1.0
2018-02-08 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #76119: Profile or password editing fails
* Resolves #80409: Error in updateMMRelations with direct mail categories
* Resolves #36192: When using captcha extension, captcha evaluation always fails
* Resolves #81927: Removal of line breaks in plain text mails results in difficult to read mail body
* Resolves #73532: Filled required field reported as missing on edit form
2018-02-07 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #83799: Remove unused hidden fields from password editing form
* Resolves #82874: Gender is not shown on preview
* Resolves #82992: Overwriting a gender label removes the other gender labels
* Resolves #82614: Custom field radio button label in preview and emails empty
* Resolves #81844: HTML email gets HTML conditional comments for Outlook removed
* Resolves #81843: HTML email has same images embedded multiple times
* Resolves #81443: overrideValues has no effect if field is not in the HTML form
2017-08-08 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #81963: renderType missing on fe_users status and fe_groups_language_overlay select fields
2017-05-29 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #81365: Missing button labels in labels list
* Resolves #81367: Call to incorrect query builder function
* Resolves #81369: Unsubscribe link from Direct Mail fails
* Resolves #81370: Input fields of type number or email not handled correctly
* Resolves #81371: Infomail form is missing hidden fields
* Resolves #81372: Account deletion may fail
* Resolves #81373: The freeCap word hash should not be checked more than once
* Update version to 5.0.1
2017-03-26 Oliver Klee
* Resolves #80286: Make the DB definition MySQL strict compatible
2017-01-25 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Code cleanup
* Follow-up to Resolves #76292: mm-relation: foreing uid is saved in uid_local and vice versa
* Migrate extension icon to svg
* Update extension requirements
2017-01-24 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up to Resolves ##79423: Migrate upload fields (image) to FAL
* Resolves #79449: Allow special characters in username in default configuration
* Update version to 5.0.0
* Resolves #76292: mm-relation: foreing uid is saved in uid_local and vice versa
* Resolves #79454: Use mb_strtoupper in Marker.php
* Resolves #79456: Remove deprecated code from TransmissionSecurity.php
2017-01-23 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up to Resolves ##79423: Migrate upload fields (image) to FAL
2017-01-22 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves ##79423: Migrate upload fields (image) to FAL
2017-01-20 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #77525: Avatar can not be deleted
2017-01-19 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #79047: Change of usergroup not possible
2017-01-18 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #79381: Migrate to Doctrine
* Resolves #79380: Fix double translation of radio button labels
* Follow-up to Resolves #79381: Migrate to Doctrine
* Resolves #79186: Evaluation uniqueGlobal reacts to own email address in edit mode
* Further follow-up to Resolves #79381: Migrate to Doctrine
2017-01-15 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Require TYPO3 CMS 7.6
2017-01-12 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #76190: static calls for HtmlUtility methods
* Resolves #76524: No text replacement for missing gender
* Resolves #77218: Site name will not be accepted
* Resolves #77227: plugin.tx_srfeuserregister_pi1.email.HTMLMail has no effect
* Resolves #78725: Field address should be placed into parseValues
* Update version to 4.0.3
2016-04-12 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #75512: Follow-up to Auto-login on create throws fatal error
2016-04-11 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #75513: Typing error in CreateActionController.php
* Resolves #75512: Auto-login on create throws fatal error
2016-04-07 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #75438: PHP 5.6 Runtime Deprecation Notice
2016-04-01 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #75364: PHP Runtime Deprecation in PHP 5.6
* Fix incorect characters in extconf.php
2016-02-19 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Update version to 4.0.2
2016-02-16 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #73494: Fatal error: Call to a member function initCountrySubdivisions() on a non-object
2016-02-15 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #72446: Edit View never to be rendered
* Resolves #72541: Version number in composer.json
* Resolves #72814: evalValues preg doesn't work properly
* Resolves #72958: evalValues for gender fails
* Update to the manual
* Update version to 4.0.1
2015-12-17 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix for password edition on TYPO3 CMS 6.2 and 7.6
2015-12-17 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix for password edition on TYPO3 CMS 6.2 and 7.6
* Update to the manual
2015-12-16 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix for the length of the language field on fe_users table
* Resolves #51278: Cannot use empty option in select field with evalValues = required
* Fix for superfluous line feeds in plain text emails
* Correction to composer.json
* Correction to labels of the gender field
* Update to the manual
* Fix for password edition on TYPO3 CMS 6.2
2015-12-15 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #65270: Security issue in sr_feuser_register 3.1.3
* Resolves #47475: if TS Constant enableEmailOnUpdate=2 => ###TCA_INPUT_xxx### markers are not replaced
2015-12-14 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Add version to js file name
* Update extension requirements
* Update to composer.json
* Resolves #60428: cancel link on delete from does not work in in FF
2015-12-13 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #72196: Adapt to Rsaauth of TYPO3 CMS 7
* Fix for form submission
* Update to the manual
2015-12-12 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #72189: Use MarkerBasedTemplateService when available
* Resolves #72193: Remove extension configuration property enableDirectMail
2015-12-10 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix for token validation
* Check referer in some cases
* Require static_info_tables version 6.3.6
* Update the manual
* Resolves #48635: fe_users pid as comma-separated list
* Fix for url generation
2015-12-09 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix for password edition after invitation acceptation
* Add template for invalid token
* Follow-up to Add template for invalid token
* Resolves: #59446: Template: dynamic field length using TCA
2015-12-08 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix for password edition
* Fixes for files upload
2015-12-04 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix for the login forms
* Fix for edit link after login
2015-11-18 Stanislas Rolland <typo3(arobas)sjbr.ca>
* [!!!] Use namespacing
* [!!!] Remove TS-configured userFuncs in favor of hooks
* Resolves #71660: [!!!] Refactor, streamline and cleanup all scripts: all API changed
* Resolves #61659: Usergroups are removed on update
* Fix error regarding salutation in static TS template
* Resolves #60167: Missing_terms_acknowlegded doesn't work
* Correction to composer.json
* Correction to plugin registration
2015-11-03 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #71286: [!!!] Remove xclass assignments
* Adjust copyright notices
2015-10-24 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #70999: Add configuration check utility
* Resolves #71000: Add url utility
* Follow-up to Resolves #71000: Add url utility
2015-10-23 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #70981: [!!!] Move default style sheets to Resources directory and add static template
* Resolves #70984: Move example text files to Resources directory
* Resolves #70986: Move template to Resources directory
2015-10-22 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #67629: RSA authentication didn't work from TYPO3 6.2.4
* Update version to 4.0.0
* Resolves #59450: Missing SQL definition for telephone
2015-10-21 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #70920: [!!!] Use Extbase localization
* Resolves #70925: Namespace plugin controller
* Follow-up to Resolves #70920: [!!!] Use Extbase localization
2015-10-18 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #70822: [!!!] Restructure captcha hooks
2015-10-14 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #70732: Move configuration files to Configuration directory
* Resolves #62206: Array problem with 5.4+
* Resolves #70279: Remove use of option $TYPO3_CONF_VARS['SYS']['serverTimeZone']
2015-10-13 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #70669: [!!!] Convert localization files to xliff and move them to Resources directory
* Resolves #70671: Require TYPO3 CMS 6.2 and remove references to previous versions
2014-07-02 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #60022: Dependency issues when updating to 3.1.3
2014-06-27 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #59919: id tag not unique / no class tag for multiple select box
2014-06-25 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Adjust extension constraints
* Remove useless error message from syslog regarding non-matching authCode
* Update version to 3.1.3
2014-05-21 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #58964: Additional Fields not working after update on 6.2
* Follow-up to Resolves #58964: Additional Fields not working after update on 6.2
* Resolves #58997: Labels for field "house_no" are missing in locallang.xml
* Resolves #52037: Erroneous mailto link in text version of acceptance email to admin after confirmation
2014-05-20 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Second argument of tx_srfeuserregister_auth::deleteRecord should be an array
* Fix some default language labels
* Missing value for BACK_URL marker
* Missing fieldset element on login form in default template
2014-04-14 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Correction to default template for sr_freecap
2014-04-10 Stanislas Rolland <typo3(arobas)sjbr.ca>
* First argument of tx_srfeuserregister_auth->aCAuth should be an array
2014-04-04 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #57650: Fatal error: Call to a member function getSubmit() on a non-object
2014-04-03 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Correction to manual regarding removed generatePassword option
2014-03-30 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #57433: Wrong call of $this->email->compile
2014-03-24 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #57236: Fatal error in class.tx_srfeuserregister_lang.php on line 64 in TYPO3 4.5
* Update version to 3.1.2
2014-03-21 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow up to #57091: Class 'Tx_SrFeuserRegister_Utility_UrlUtility' not found in TYPO3 4.5
* Update version to 3.1.1
2014-03-20 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #57091: Class 'Tx_SrFeuserRegister_Utility_UrlUtility' not found in TYPO3 4.5
2014-03-19 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up to fix to support for labels containing dots in TypoScript
2014-03-18 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #56989: getUserObj vs makeInstance on tslib_cObj in 3.1.0
* Resolves #50848: Improve usability when using tt_address
* Fix missing argument on call to tx_srfeuserregister_email::compile() in tx_srfeuserregister_setfixed
* Fix support for labels containing dots in TypoScript
2014-03-13 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Update manual
* Clean initialisation
* Update version to 3.1.0
2014-03-12 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix localization failure of error text in tx_srfeuserregister_setfixed
* Resolves #51953: Subpart ###EMAIL_TEMPLATE_SETFIXED_ENTER_ADMIN### missing in HTML template
2014-03-11 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Resolves #56790: Remove dependency on extension div2007
* Updated manual
* Fix PHP warning in tx_srfeuserregister_select_dmcategories
* Missing doNotEnforceUsername in static template
* Fix incorrect behaviour when using email as username
* Resolves #51959: Markers visible in administrator notification after edit
2014-02-25 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix flexfom structure and flexform value retrieval
2014-02-20 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #43925: Site crashes (500) if security token is clicked after more than 30 days
* Resolves #50838: Non existing token crashes site
* Resolves #54034: typo ("rewiew") in locallang.xml
* Requires TYPO3 4.5+
* Resolves #51950: Deprecation Message t3lib_htmlmail->t3lib_htmlmail()
* Follow-up to #50838: Non existing token crashes site
* Initialize $GLOBALS['TCA']['fe_users']['feInterface'] when not set (TYPO3 6.2)
* Remove usage of tx_div2007_alpha_language_base
* Require php 5.3+ and enable in TYPO3 6.2
* Fix usage of methods deprecated in TYPO3 6.2
* Remove usage of tx_div2007_alpha::loadTcaAdditions_fh001
* Remove usage of tx_div2007_alpha::userProcess_fh001
* Remove usage of tx_div2007_alpha::getSetupOrFFvalue_fh002
* Remove tx_srfeuserregister_hooks_cms.php
2013-08-11 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #50607: sr_freecap Captcha might not be accepted after submission (Thanks to Roland Schenke)
2013-08-08 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix text in static template constants
* Fix issue #50934: Security Ticket #2013011810000038
2013-07-04 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Revert fix issue #39429: usergroups outside pid not saved in edit / invite mode
2013-07-02 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix dates in change log
* Follow-up to t3lib_div::intval_positive not available in TYPO3 6.0 in tx_srfeuserregister_data
* Fix issue #39429: usergroups outside pid not saved in edit / invite mode
* Ensure the data array is always an array
2013-07-01 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #41827: enableAdminNotifyOnUpdate=1 produces wrong dmailCategories values in E-Mail
* Fix bug #44151: ###BACK_URL### not working, looses Parameters and possible wrong character encoding
* Fix bug #41321: Clicking cancel on the account deletion confirmation pages causes a 404 error with internet explorer
* Fix bug #46429: Empty Form after cancelling delete Form
* Fix issue #49426: addGlobalMarkers: wrong conditions
* Fix issue #37022: Empty form security token
* Fix issue #39069: Check pid of fe-users in function login (Thanks to Georg Schönweger)
* Fix issue with confirmType in setfixed url
* Correct function name in tx_srfeuserregister_setfixed->computeUrl
* Fix issue #37046: JavaScript for updateForm() doesn't respect formFields setting
* Fix issue #40079: Can't edit password when password is required in edit mode
* Correction to the manual
* Fix issue #40548: Show password_again as required field on registration form
* Fix issue #39560: Added single checkbox always checked
* Follow-up to issue #39560: Added single checkbox always checked
2013-06-29 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #46080: BE log error after change PHP5.2 -> PHP5.3
* Fix bug #41799: Title in fe_groups_language_overlay is too short
2013-06-27 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Revert Revision 67451: Do not expose autologin private key
2013-06-26 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Revert Revision 66556: Require saltedpasswords to be installed
* Revert Revision 66559: Require felogin, rsaauth and saltedpasswords
* Revert Revision 66567: Always check for required rsaauth
* Fix t3lib_div::intval_positive not available in TYPO3 6.0 in tx_srfeuserregister_data
2013-04-02 Franz Holzinger <franz@ttproducts.de>
* replace PHP constant SR_FEUSER_REGISTER_EXTkey by SR_FEUSER_REGISTER_EXT
* remove constants from div2007
2013-03-16 Franz Holzinger <franz@ttproducts.de>
* new feature: control the user group generation by comparing of the entries in a XML file
2013-02-19 Franz Holzinger <franz@ttproducts.de>
* support for DirectMail fields even if it is not installed any more
2012-10-27 Franz Holzinger <franz@ttproducts.de>
* use global $GLOBALS['TCA'][$theTable] instead of internal $this->TCA variable
2012-10-26 Franz Holzinger <franz@ttproducts.de>
* replace auto_login_key from dataArray into its own variable
2012-10-22 Franz Holzinger <franz@ttproducts.de>
* restructuring
2012-10-18 Franz Holzinger <franz@ttproducts.de>
* Fix bug: Do not continue if the saving of the user data went wrong
2012-10-15 Franz Holzinger <franz@ttproducts.de>
* new feature: house_no which contains the house number for the given street
2012-10-10 Franz Holzinger <franz@ttproducts.de>
* Fix bug #35796: you must add the server timezone in seconds after the usage of mktime if the server time is set (serverTimeZone)
2012-10-03 Franz Holzinger <franz@ttproducts.de>
* return a boolean FALSE in decryptPasswordForAutoLogin if there is a problem with the rsaauth backend decryption
* do not require rsaauth to be installed
2012-10-02 Franz Holzinger <franz@ttproducts.de>
* return a boolean FALSE if there is a problem with the saltedpasswords
* do not require saltedpasswords to be installed
2012-09-11 Franz Holzinger <franz@ttproducts.de>
* fix bug #40812: wrong usage of sprintf when locallang wants to report a text which is not replaced by div2007
2012-07-11 Franz Holzinger <franz@ttproducts.de>
* fix bug with captcha: The subpart marker ###SUB_ERROR_FIELD_captcha_response### for the field captcha_response has not been generated.
2012-05-04 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #36838: FE user password saved in BE is displayed in plaintext
* Version 3.0.1
2012-04-28 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Remove middle_name from default setup
* Move some functions to tx_srfeuserregister_display
* Update to manual
* Add label evalErrors_uniqueLocal_email_informal
* Version 3.0.0
2012-04-27 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Require div2007 0.10.1
* Fix bug #36675: Query parameter cmd is not honoured
* Fix bug #36526: authCode is not compatible with standard authentication code
* Fix bug #36504: SR's authentication code does not match the one from DirectMail
* Fix bug #36680: authCode is not horoured if short urls are enabled
* Follow-up to feature #36123: Allow evaluation of email and captcha on the infomail form
* Add feature #36682: Add setfixed option to unsubscribe a fe user without having to login
2012-04-26 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #36590: Infomail form does not display email validation error
* Fix bug #36638: Composite name may be substituted with a single space
2012-04-24 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Cleanup in ext_localconf.php
* Fix class name in ext_autoload.php
* Revert class name change in ext_autoload.php
* Cleanup in class.tx_srfeuserregister_email.php
* Remove require_once class.tx_div2007_email.php in class.tx_srfeuserregister_email.php
2012-04-23 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up to bug #35882: Corrections to template subpart "terms acknowledged" on edit form
* Follow-up 14 to feature #34447: Add hidden username if needed
* Cleanup captcha-related code
* Add feature #36492: Use t3lib_div::isValidUrl to validate url's
* Update manual
2012-04-22 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #36433: Non-closed br tags in pi1/locallang.xml
* Fix bug #36434: locallang.xml contains \n characters combination
* Fix bug #15661 (old bug tracker): broken linefeed handling in plain text emails
* Fix bug #36434: Broken linefeed handling in plain text emails
* Fix bug #36442: t3lib_div::cHashParams is deprecated in TYPO3 4.7
2012-04-21 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Require div2007 0.10.0
* Follow-up 12 to feature #34447: Avoid retrieving private key when no password is set
* Follow-up to feature #36191: Remove left over debugging code
* Follow-up 13 to feature #34447: Remove secured password from data array
* Fix bug #15231 (old bug tracker): when generating username, the username is not shown in the preview page
* Fix bug #13853 (old bug tracker): Changes in recordArray (hook registrationProcess_beforeConfirmCreate) does not show in preview
2012-04-20 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Remove global declarations from tx_srfeuserregister_tca
* Fix bug #36383: module_sys_dmail_newsletter not removed from admin review email
* Fix bug #36388: In preview mode, the list of user groups ends with suprfluous br
* Follow-up 11 to feature #34447: Password edit when both username and email are disabled
* Cleanup outdated hidden field for password_again in tx_srfeuserregister_marker
* Remove unnecessary access to secure array
* Add feature #36396: Always use character set utf-8 by default
* Add feature #36398: Password needs to be entered again when cancelling the preview
* Allow update of fe_users on setfixed
2012-04-19 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up 2 to feature #36006: Test whether extension tt_address is loaded
* Fix typo in comment in class.tx_srfeuserregister_marker.php
* Simplify condition in class.tx_srfeuserregister_data.php
* Move call to clearSessionData out of tx_srfeuserregister_data
* Restructure tx_srfeuserregister_display::getKeyAfterSave
* Require div2007 0.9.0
* Follow-up to bug #36165: Log warning to sysLog if localized label was not returned by div2007
* Fix bug #36306: Attachment fails with current trunk producing fatal error in div2007
* Fix bug #36307: Admin review E-Mail plain text rendering problem with current trunk
* Recommend setting ['MAIL']['substituteOldMailAPI'] to '1' in the Install tool
* Remove global declarations from tx_srfeuserregister_control, tx_srfeuserregister_control_main and tx_srfeuserregister_setfixed
* Remove global declarations from tx_srfeuserregister_marker and tx_srfeuserregister_display
2012-04-16 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix variable name in class.tx_srfeuserregister_control_main.php
2012-04-15 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #36165: Localization of some strings results in empty string
* Fix bug #18108 (old bug tracker): Evaluating for white spaces with preg does not work
* Fix bug #14453 (old bug tracker): Confirmation mail is sent to user although enableEmailConfirmation = 0
* Add feature #36191: Move captcha markers setting and captcha evaluation to hooks
2012-04-15 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Add feature #36123: Allow evaluation of email and captcha on the infomail form
* Cleanup changelog
* Follow-up 10 to feature #34447: No infomail feature for fe_users
* Update manual: Remove color and wrap markers absent of css-styled template
* Add feature #36125: Require to remove obsolete infomail markers
* Fix bug #36126: email.INFOMAIL_NORECORD = 0 is not honoured
* Suggest sr_freecap
* Add feature #36129: Adjust HTML markup of captcha subpart of default HTML template
* Fix bug #36131: infomail edit link leads to wrong page
2012-04-14 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #36051: RegHash not cleared if link results in auto-login
* Change order of extension dependencies (rsaauth before saltedpasswords)
* Update extensions dependencies, require TYPO3 4.4
* Update manual
* Add feature #36089: Issue error message if html template contains deprecated marker
* Fix bug #36091: setEmptyIfAbsent may not work if field is not numeric
2012-04-13 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up 10 to feature #34447: Upgrade markers only for extension sr_feuser_register
* Update manual: Remove references to simulateStaticDocuments
* Add feature #36006: Honour tt_address extension configuration settings
* Follow-up feature #36006: Fix $GLOBALS['TCA']['tt_address']['feInterface']['fe_admin_fieldList']
* Cleanup identity checks
2012-04-12 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #35910: Messages regarding installation problems are not localized
* Follow-up to bug #35910: Messages regarding installation problems are not localized
* Cleanup: Remove unnecessary check for div2007 in tx_srfeuserregister_email
* Fix bug #35926: Checkbox cannot be unset when preview is used
* Fix bug #9542 (old bug tracker): Required for checkbox doesn't work
* Fix bug #8432 (old bug tracker): Required checkbox of extended fe_user table is not required when registering in the FE
* Add feature #35931: Allow to show terms of usage on page or url
* Add feature #15100 (old bug tracker): How to include terms of use in registration form
* Add feature #18009 (old bug tracker): Add module_sys_dmail_newsletter to tx_srfeuserregister_pi1_css_tmpl.html (Thanks to Tobias Schaefer)
* Fix bug #11529 (old bug tracker): tx_srfeuserregister_control_main::init has wrong PhpDoc comment
* Follow-up to feature #35883: Always use flexforms
2012-04-11 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up 4 to feature #35805: Display message in frontend if required extension is not loaded
* Add feature #35878: Issue error message if FE login security level is not set to "normal" or to "rsa"
* Add feature #35881: Add a status report about the installation of the extension (TYPO3 4.6+ only)
* Fix bug #35882: Corrections to template subpart for "terms acknowledged"
* Follow-up to feature #35881: Add a status report about the installation of the extension (TYPO3 4.6+ only)
* Follow-up 5 to feature #35805: Drop requirement for ADOdb Date Library
* Add feature #35883: Always use flexforms
* Add feature #35884: Add support for middle name
2012-04-10 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up 1 to feature #35805: Require system extension adodb
* Follow-up 9 to feature #34447: Do not show tx_srfeuserregister_password in HTML source
* Follow-up to #15174 (old bug tracker): Incorrect test of absence of required value
* Fix bug #35833: Password update on accepting invitation may not work
* Follow-up 2 to feature #35805: Write error to syslog if required extension is not loaded
* Follow-up 3 to feature #35805: Always use adodb Date library for timestamp conversion
2012-04-09 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #15174 (old bug tracker): Doesn't allow update of user group
* Fix bug #10435 (old bug tracker): Error messages when country is changed while no user group is selected in frontend
* Cleanup line breaks in rsaauth.js
* Fix bug #14020 (old bug tracker): user groups from userGroupAfterConfirmation are visible in the invitation form
* Fix bug #13913 (old bug tracker): Login through email-link overwrites usergroup settings
* Cleanup: Add tx_srfeuserregister_pi1_adodb_time to ext_autoload
* Add feature #35805: Use ADOdb Date Library from system extension adodb
2012-04-08 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Add feature #28370: replyTo feature for mails sent to user
* Add feature #6168 (old bug tracker): Support itemsProcFunc property of TCA select and radio fields (Thanks to Jeff Segars)
* Fix bug #12795 (old bug tracker): Default setup damages valid e-mail adresses
* Fix bug #13765 (old bug tracker): Attachment file is attached to the administrative review email
* Follow-up 8 to feature #34447: Add ###LABEL_NEW_PASSWORD### on ###TEMPLATE_EDIT###
* Fix bug #35786: JavaScript files are not versioned
* Fix bug #16658 (old bug tracker): amp htmlspecialchars_decode doesn't work in 2.6.1
* Fix bug #14739 (old bug tracker): htmlspecialchars_decode doesn't work
2012-04-07 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up 7 to feature #34447: ###HIDDENFIELDS### not always replaced
2012-04-06 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up to bug #27521: Deleting images in EDIT mode leads to broken references
* Follow-up 6 to feature #34447: Add getters for transmission security and storage security
2012-04-05 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up 5 to feature #34447: Move transmission security to own class
* Cleanup: Initialize the command key
* Follow-up 2 to feature #34405: Allow old mailer API for TYPO3 4.5-4.6
* Fix bug #35730: enableEmailOnDelete not honoured
* Fix bug #35732: Error due to username being required in edit mode
2012-04-04 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up to cleanup #35292: Cleanup in ext_tables.php
* Follow-up 3 to feature #34447: Add support for saltedpasswords and rsaauth
* Follow-up 4 to feature #34447: Move storage security to own class
2012-04-03 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Add feature #27504: Add userGroupsPidList TS constant and TS setup property (Thanks to Georg Schönweger).
2012-03-29 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #14271 (old bug tracker): Password constant not respected
2012-03-28 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up 1 to feature #34405: Make use of Swift Mailer API
* Fix bug #17506 (old bug tracker): Error in registration process since TYPO3 4.5
* Fix bug #18475 (old bug tracker): Backslashes added to Name in E-Mail
* Require div2007 version 8.2
* Add feature #35347: Add autoload file
* Fix bug #16950 (old bug tracker): Adding middle_name to field list
2012-03-27 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #33122: User confirmation with multiple usergroups (Thanks to Tomita Militaru)
* Fix bug #14930 (old bug tracker): Admin confirmation not working
* Fix bug #11191: enableAdminReview do not work without enableEmailConfirmation
* Fix bug #18169 (old bug tracker): Combination: no user confirmation, adminReview + user notification not possible
* Fix bug #11533 (old bug tracker): Documentation is incorrect for tx_srfeuserregister_tca::addTcaMarkers
* Fix bug #13643 (old bug tracker): Unnecessary disclosure of username in filename (Thanks to Steffen Müller)
* Follow-up 2 to feature #34447: Add support for saltedpasswords and rsaauth
* Cleanup #35292: Cleanup in ext_tables.php
* Fix bug #35293: Protect method tx_srfeuserregister_controldata::writeToken
2012-03-26 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #33279: Evaluation of arrays returns always false
* Follow-up 1 to feature #34447: Add support for saltedpasswords and rsaauth
* Add feature #34676: Add support for title attribute on input fields for TCA markers (Thanks to Carlos Meyer)
* Fix bug #14699 (old bug tracker): Cannot remove "username" field in EDIT view
* Fix bug #31012: Images lost on profile editing
* Fix bug #27521: Deleting images in EDIT mode leads to broken references
* Fix bug #5932 (old bug tracker): Update profile and delete image
* Fix bug #14509 (old bug tracker): Deleting images still buggy
* Fix bug #13882: Gender is not shown in backend
2012-03-25 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Fix bug #32066: Security bug in admin confirmation
* Fix bug #15081 (old bug tracker): Admin review email is not sent to the admin but to the user
* Fix bug #15182 (old bug tracker): Very very big problem with administrative review
2012-03-24 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up to bug #13349: Checkbox is set to "0" if not checked (Thanks to Oliver Hader)
2012-03-23 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Add feature #34447: Add support for saltedpasswords and rsaauth
* Fix bug #26708: Autologin does not work with rsa and saltedpasswords
* Fix bug #34417: Does not work with srfeuserregister_t3secsaltedpw anymore
* Fix bug #34792: Edit profile sets password to dummyPassword if useMd5Password is used
* Fix bug #34453: "password repeat" field has the value ###FIELD_password_again###
* Fix bug #31152: Can't eval password on edit
* Fix bug #31140: Dummy password "Joh 3,16" is used in the registration
* Fix bug #26952: Missing declaration of pw_change in javascript
* Add feature #34907: Remove Old-style template
* Fix bug #34217: Radio buttons do not respect db values in edit view (Thanks to Jan Loderhose)
* Fix bug #13349: Checkbox is set to "0" if not checked (Thanks to Oliver Hader)
* Fix #15813 (old bug tracker): Labels with variables do not get processed if fieldname contains numbers (Thanks to Joerg Winter)
* Add feature #6646 (old bug tracker): Possibility to disable enforcing of username field (Thanks to François Suter)
* Fix #15659 (old bug tracker): Field fe_cruser_id is never set (Thanks to Jens Herden)
* Fix #17686 (old bug tracker): Password change does not execute any validation
* Fix #6308 (old bug tracker): Wrong marker in template (Thanks to Bjorn T. Hallberg)
* Fix #10858 (old bug tracker): Password not md5 hashed with firefox because onchange is not triggered when the form is automatically filled
* Fix #7786 (old bug tracker): PasswordAtLeast has no effect when useMd5Password is set
* Fix #7932 (old bug tracker): Confirmation displays in the login form the password MD5 hash
* Fix #9274 (old bug tracker): MD5 Hash inserted in password field of create form
* Fix #6731 (old bug tracker): Suboptimal way to tell user his pw if generatepassword & md5 is used
* Add feature #35209: Make extension conflict with extension patch1822
2012-03-01 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Follow-up to feature #34405: Fix CGL in tx_srfeuserregister_email (Thanks to Franz Holzinger)
2012-02-28 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Add feature #34405: Make use of Swift Mailer API
2012-02-25 Stanislas Rolland <typo3(arobas)sjbr.ca>
* fix regression on security issue: Information (and password) Disclosure in extension sr_feuser_register (Thanks to Franz Holzinger)
2012-02-24 Franz Holzinger <franz@ttproducts.de>
* add more parameters to the hooks for registrationProcess_afterSaveCreate, registrationProcess_afterSaveCreate and evalValues
2012-02-22 Stanislas Rolland <typo3(arobas)sjbr.ca>
* fix security issue: Information (and password) Disclosure in extension sr_feuser_register
* fix security issue: sr_feuser_register: "edit account" page contains cleartext password in HTML source
2012-01-19 Franz Holzinger <franz@ttproducts.de>
* fix bug #17137: store the token together with the user data before a setfixed command is executed
2012-01-18 Franz Holzinger <franz@ttproducts.de>
* fix bug #18019: Incorrect login URL code
2012-01-16 Franz Holzinger <franz@ttproducts.de>
* fix bug #18083: Parser error on eval() in getShortUrl()
2012-01-16 Franz Holzinger <franz@ttproducts.de>
* fix bug #18364: Initialize $prefixId in method tx_srfeuserregister_display::editForm
2012-01-13 Franz Holzinger <franz@ttproducts.de>
* fix bug #14416: Missing break in switch after preg
2012-01-13 Franz Holzinger <franz@ttproducts.de>
* fix bug #18343: replace deprecated t3lib_div::intInRange by t3lib_utility_Math::forceIntegerInRange
* replace deprecated t3lib_div::testInt by t3lib_utility_Math::canBeInterpretedAsInteger
2011-11-24 Franz Holzinger <franz@ttproducts.de>
* fix bug: do not use the deprecated function t3lib_div::int_from_ver for TYPO3 4.6 and later
2011-11-16 Franz Holzinger <franz@ttproducts.de>
* fix bug: use the new method getLL_fh002 which supports TYPO3 4.6
2011-11-15 Franz Holzinger <franz@ttproducts.de>
* fix bug in implode for the field list of DBgetUpdate
2011-11-15 Franz Holzinger <franz@ttproducts.de>
* restructuring and CGL
2011-11-15 Franz Holzinger <franz@ttproducts.de>
* fix bug with TYPO3 4.6: use the getLL method tx_div2007_alpha5::getLL_fh002
2011-11-14 Franz Holzinger <franz@ttproducts.de>
* new feature: decide which user groups are selectable: allowedUserGroups, allowedSubgroups, deniedUserGroups and which must kept keepUnselectableUserGroups
* fix bug: no requirement for tems_acknowledged by default
2011-10-04 Franz Holzinger <franz@ttproducts.de>
* new feature: add the field terms_acknowledged and a PDF file with the terms
* fix bug: show an error text if there is not text for missing_<fieldname> found.
2011-09-08 Franz Holzinger <franz@ttproducts.de>
* issue #29523 (forge): improve the hook for the validation to use the error message generator
2011-09-05 Franz Holzinger <franz@ttproducts.de>
* fix bug with duplicate html tag ids in select box
* fix bug with the check for required input fields: the data:<field> feature must not use an array
2011-05-30 Franz Holzinger <franz@ttproducts.de>
* better error messages if the file upload fails
2011-05-16 Franz Holzinger <franz@ttproducts.de>
* avoid unnecessary commands when ext_tables.php is included in the FE hook tt_products extendingTCA
2011-05-14 Franz Holzinger <franz@ttproducts.de>
* fix bug: enableAutoLoginOnConfirmation is also supported with md5 password
2011-03-03 Franz Holzinger <franz@ttproducts.de>
* fix bug: override values for group must not use array_diff if there has not been a usergroup array before
2011-03-02 Franz Holzinger <franz@ttproducts.de>
* fix bug: PHP Warning: trim() expects parameter 1 to be string, array given in model/class.tx_srfeuserregister_data.php line 391
* TYPO3 coding guidelines: add "public" to the function and variable names
2011-02-28 Franz Holzinger <franz@ttproducts.de>
* fix bug #17622: the email name must be encoded using addcslashes and have double quotes around it
2011-02-12 Franz Holzinger <franz@ttproducts.de>
* replace for PHP 5.3 deprecated ereg_replace by preg_replace
* parameter $is_dst of mktime is deprecated in PHP 5.3
2011-01-19 Franz Holzinger <franz@ttproducts.de>
* fix bug with sr_email_subscribe: regHash has been deleted too early before saving
* fix bug: preview data has not been read in with regHash
2011-01-04 Franz Holzinger <franz@ttproducts.de>
* fix bug with sr_email_subscribe: No saving of the edited data has been possible
2010-12-01 Franz Holzinger <franz@ttproducts.de>
* undo the change to disable a user confirmation when the admin receives the email to review SETFIXED_REVIEW
2010-11-29 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Restored missing entry in Changelog
* Fixed bug #11149(Forge): Extension Manager issues warning regarding class tx_srfeuserregister_lib_conf
* Fixed issue #11150(Forge): Remove references to obsolete extension patch1822
* Fixed issue #11151(Forge): Remove global declarations from class tx_srfeuserregister_data
* Fixed bug #15182(bugtracker): Problem with administrative review
2010-11-19 Franz Holzinger <franz@ttproducts.de>
* new feature: use v_dear_male or v_dear_female instead of v_dear if a gender has been entered
* complete the contributor list in contributors.txt
* fix bug 16132: image is missing at CREATE and INVITE
* allow to set attributes to the buttons
2010-10-21 Franz Holzinger <franz@ttproducts.de>
* fix bug 15281: the authorization in the confirmation link did not work with multiple FE groups because the comma had been HTML encoded
* fix bug 15225: Form token is empty
2010-10-17 Stanislas Rolland <typo3(arobas)sjbr.ca>
* Updated manual
* Fix XCLASS keys of files model/class.tx_srfeuserregister_model_table_base.php and model/class.tx_srfeuserregister_model_conf.php
* Version 2.6.1
2010-10-14 Franz Holzinger <franz@ttproducts.de>
* fix bug 15271: When logged in, edit form is shown instead of "click_here_to_edit"-link
* fix bug 15660: locallang.xml has become invalid
* fix bug 14976: PHP Warning: explode() expects parameter 2 to be string
* fix bug 15176: no first_name and last_name for TYPO3 4.4+
* Fix security issue: CSS with first_name and last_name
* Fix bug 15664: replace marker ###LABEL_V_EMAIL_LOST_PASSWORD### by ###LABEL_V_INFOMAIL_LOST_PASSWORD###
* Fix bug 14936: restore the edit link
2010-06-26 Franz Holzinger <franz@ttproducts.de>
* fix bug: a md5 encoded password must be shown as clear text in the password marker
* fix bug: if enableHTMLMail is 1, then the admin must always receive a HTML email independant from the FE users preferences
* new feature: useLocalCountry to show the country names in their local languages
* remove support for old styled template
* change of subpart markers: ###EMAIL_TEMPLATE_SETFIXED_REVIEW### and HTML variant renamed to ###EMAIL_TEMPLATE_SETFIXED_REVIEW_ADMIN###, because it is sent to the admin and not to the user.
* fix bug 4341: delete regHash after usage and no confirmation email will be sent twice using short urls
* enhance feature: ###EMAIL_TEMPLATE_SETFIXED_ENTER_ADMIN### and HTML as notification when a user has clicked on the login link
* fix bug in order not to lose the chosen checkbox entries on create if the user steps back to the entry form.
2010-05-31 Franz Holzinger <franz@ttproducts.de>
* fix bug 14125: if user group can be selected by user, then the authorization key has been using an empty group field
* fix bug 14163: an automatically generated password had been sent as an empty password to the user
* new feature: do not check the token, if a create or edit cmd is provided without any additional data
2010-04-14 Franz Holzinger <franz@ttproducts.de>
* new feature: add a token to the form. Form data is only read with a valid token.
* new feature: no password and password_again fields are shown in the update Javascript
* new marker for a simulated password and password_again, where only a dummy password will be used
The HTML template file must be modified with value="###FIELD_password###" in the input tags
* check for the authorization code in confirmation links and setfixed at the beginning when the incoming data is read
* do not use special groups in authorization code because these values are changed very frequently
* fix bug 12323: PHP 5.3 checks the TYPO3 api parameter $conf and no reference is allowed
* fix bug 13107: consider invite for sending of email
* fix bug 11999: PHP 5.3 does not allow the split function
* fix bug 13140: absRefPrefix has been wrongly implemented
* change default settings for the password to allow blank characters
* dependency on div2007 version 0.2.6
2009-10-17 Franz Holzinger <franz@ttproducts.de>
* fix bug 12171: fix PHP errors caused with enableEmailOnUpdate setup
* fix bug with not sent HTML emails
* fix bug 10227: error in deleting registration to directmail because of missing aC parameter
* fix bug 12261: srfeuserregister v 2.5.23 some markers not set in email
* fix bug 9687: Problems when Admin invites a new user width md5 encrypted password
2009-09-17 Franz Holzinger <franz@ttproducts.de>
* fix bug 11185: usergroup(s) are not correctly saved while using user group selection upon registration
* new eval values uniqueDeletedGlobal and uniqueDeletedLocal: This considers that also deleted users are prohibited from a recreation in the future.
* fix bug 11304: password has not been MD5 encrypted if autogeneration has been set
* fix bug with HTMLMailEnabled: check the correct data row
* fix bug 10785: support middle_name in the name
* fix bug 10714: confirmation mail not sent as HTML
* fix bug 8831: do not save htmlspecialchar'ed records
* fix bug 11527: correct html for group selection with check boxes
* fix bug 11534: allowUserGroupSelection has lead to SQL error in some cases
* fix bug 10989: Javascript has true and false in lower case
* new feature: consider the localization of Direct Mail categories only if useLocalization has been set. Otherwise all categories are listed.
* new feature: preg for the evaluation of Perl regular expressions
* new feature: set enableEmailOnDeny=0 if a rejected user shall not get any email
2009-05-13 Franz Holzinger <franz@ttproducts.de>
* new field cnum which holds the customer number for different ERP software
* fix bug with wrong class attribute for the image preview tag
* fix bug with not replace marker for FIELD_date_of_birth
* fix bug 10981: the merging of language file did remove new translations
2009-04-06 Franz Holzinger <franz@ttproducts.de>
* fix security issue TYPO3-SA-2009-004
2009-01-18 Franz Holzinger <franz@ttproducts.de>
* new hook for data field evaluation
* fix bug 9556: email with forgotten password did not work properly. Add the missing template subparts to the CSS template.
* fix bug 10156 and support the felogin extension
* fix bugs with problems on editing
* support for patch 1822
2008-09-24 Franz Holzinger <franz@fholzinger.com>
* Version 2.5.19:
* Fix bug 9380: $conf has not been used for the translations
2008-09-17 Franz Holzinger <franz@fholzinger.com>
* Version 2.5.17-18:
* Fix bug 8844: delete link
* Always submit the cmd with infomail
2008-07-28 Franz Holzinger <franz@fholzinger.com>
* Version 2.5.16:
* Fix bug with not working radio button á¸or tt_address gender because it has values different from 0 and 1
* Fix bug to always show the registration link before the CREATE or EDIT template is displayed.
2008-06-23 Franz Holzinger <franz@fholzinger.com>
* Version 2.5.15:
* Fix bug 8789: User group is emptied after editing and updating data
2008-06-20 Franz Holzinger <franz@fholzinger.com>
* Version 2.5.14:
* Fix bug with not substituted hidden field markers for infomail
2008-06-19 Franz Holzinger <franz@fholzinger.com>
* Version 2.5.13:
* Do not require email confirmation if enableEmailConfirmation is 0. v_your_account_was_created_nomail will be used in this case.
* new feature 0007933: Confirmation link cannot be clicked more than once if regHash is used.
* fix bug with translation for Direct Mail categories
* fix bug with admin email confirmation which did not contain all new fields after creation if default values have been added during the saving before
* fix bug with md5 password encryption
2008-05-28 Franz Holzinger <franz@fholzinger.com>
* Version 2.5.12:
* fix bug 8382: when some records have already been stored and there is evaluation to edit fields which are not shown then the error message is not displayed. ###EVAL_ERROR_saved### is a new marker in order to display an error message for all fields which have been wrongly stored.
* restructure code: The cmd piVar must be evaluated already in the controldata because cmdKey must be set after it.
2008-05-20 Franz Holzinger <franz@fholzinger.com>
* Version 2.5.11:
* fix bug 8416: the CODE and flexforms have been emptied
2008-05-15 Franz Holzinger <franz@fholzinger.com>
* fix security issues
2008-04-01 Franz Holzinger <franz@fholzinger.com>
* new hook addGlobalMarkers for additional global markers
* new constant dmailCheckedUponRegistration if the Direct Mail categories shall be checked by default
* fix bug 3650: Password is not md5 hashed if changed after making an error on registration
* new feature dateFormat
* fix bug with not sent HTML emails in sr_email_subscribe due to wrong initializations
* fix bug 7376: evalFunc does not work in 2.5.8 but crashes TYPO3
* add after the preview markers in the CSS HTML template as a workaround for a bug in MS Internet Explorer 7
* many additions to the old style template file
* small modification to captcha for sr_freecap
* labels for eval errors translations
* new feature: make all objects globally available over t3lib_div::getUserObj
* fix bug 7822: DMAIL- Category Subscription did not work
2007-10-17 Franz Holzinger <franz@fholzinger.com>
* new feature: enableEmailOnUpdate = 2 to send only the changed fields in an email if a user alters his data
* fix bug with not saved change of unchecked check box input
* fix bugs with wrong HTML output at select box and check boxes
* new feature: select.static_country to use a SQL WHERE clause as a filter over the countries in the select box
2007-09-12 Franz Holzinger <franz@fholzinger.com>
* fix bug with checkboxes set to zero when errors in the entered data
* fix wrong lower case markers of checkboxes to upper case
2007-09-04 Franz Holzinger <franz@fholzinger.com>
* fix bug with having same html ids many times when more records are shown
2007-08-29 Franz Holzinger <franz@fholzinger.com>
* fix bug with wrong $row variable in tx_srfeuserregister_tca
* start with encoding in renderCharset
2007-08-14 Franz Holzinger <franz@fholzinger.com>
* fix bug with no editing possible for sr_email_subscribe and a setfixed link
* fix bug 5609: informal texts did not work
* fix bug with not saved entries for mm relations
* fix bug when delete did not work with setfixed becaue the cmd has been overridden by restored regHash value
2007-07-12 Franz Holzinger <franz@fholzinger.com>
* fix bug 5291: new translations for Dutch by Felippe van Eekhout <feekhout@worldonline.nl>
2007-06-16 Franz Holzinger <franz@fholzinger.com>
* fix bug with autocreation of usernames
* new classes for setfixed, control data and url functions
* fix bug with not shown status field in backend
2007-06-11 Franz Holzinger <franz@fholzinger.com>
* rename ###EMAIL_TEMPLATE_INFOMAIL_EMPTY### back to ###TEMPLATE_INFOMAIL### because it is not sent in an email
* fix bug 5766: no notification emails have been sent due to wrong $templateCode variable.
2007-06-07 Franz Holzinger <franz@fholzinger.com>
* fix bug with missing getTemplateCode function in data object