Newer
Older
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
commit b3f0c2ed8 (HEAD -> main)
Author: John Beranek <jberanek@users.sourceforge.net>
Date: Sun Sep 24 16:23:33 2023 +0100
Updated version number for release of 1.11.4
web/version_num.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 03bddb58c (origin/main)
Merge: d9c276e7e 9f3ffa761
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 24 10:24:24 2023 +0100
Merge remote-tracking branch 'origin/main'
commit d9c276e7e
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 24 10:23:04 2023 +0100
Only display week numbers in the mini-calendars if the week starts on a Monday, the start of the ISO week.
web/js/datepicker.js.php | 3 ++-
web/systemdefaults.inc.php | 8 +++++---
2 files changed, 7 insertions(+), 4 deletions(-)
commit 9f3ffa761
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Sep 23 14:14:28 2023 +0100
Revert last commit
COPYING | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 8154870a4
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Sep 23 14:12:49 2023 +0100
test
COPYING | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 2b3f03874
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 22 12:24:48 2023 +0100
Fix bugs in use of $mincals_week_numbers and $view_week_number. See GitHub Issues #3515.
web/index.php | 4 ++--
web/js/datepicker.js.php | 2 +-
web/systemdefaults.inc.php | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
commit a9da72730
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 22 11:33:55 2023 +0100
Remove repeated colons in Norwegian translations
web/lang/lang.nb | 4 ++--
web/lang/lang.nn | 4 ++--
web/lang/lang.no | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
commit 2e0f65bad
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 22 10:55:46 2023 +0100
Add comment
web/js/datatables.js.php | 4 ++++
1 file changed, 4 insertions(+)
commit 02f6edf09
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Sep 21 09:09:21 2023 +0100
Fix problem with PDF landscape orientation not being respected on some clients. See GitHub Issues #3512.
web/js/datatables.js.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 9c46f6b09
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Sep 19 16:01:13 2023 +0100
Fix typo in comment
web/edit_users.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 70ba751b3
Merge: 36ef4e6e1 62c459241
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Sep 19 15:22:25 2023 +0100
Merge pull request #3513 from meeting-room-booking-system/user_deletion
Add a configuration option to prevent the deletion of users that appear in bookings
commit 62c459241
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Sep 19 15:18:31 2023 +0100
Add server-side checking of whether users can be deleted.
web/edit_users.php | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
commit 36ef4e6e1
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Sep 19 13:16:19 2023 +0100
Update pdfmake.min.js.map
web/jquery/datatables/pdfmake.min.js.map | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit fbe83069b
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 17 11:13:39 2023 +0100
Add basic language version of nb. See https://github.com/DataTables/Plugins/issues/576.
web/jquery/datatables/language/nb.json (new) | 216 +++++++++++++++++
1 file changed, 216 insertions(+)
commit 730f7bc52
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 17 11:11:26 2023 +0100
Corrected naming of Norwegian language file. See https://github.com/DataTables/Plugins/issues/580.
.../datatables/language/nb-NO.json (new) | 216 +++++++++++++++++
1 file changed, 216 insertions(+)
commit 8d7d7c2dc
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 17 10:55:37 2023 +0100
Fix bug allowing private entry information to be displayed in the week (single room) view. See GitHub Issues #3510.
web/functions_table.inc | 1 +
1 file changed, 1 insertion(+)
commit 7f0988390
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Wed Sep 13 17:26:05 2023 +0100
Initial shot at preventing users with bookings in the system from being deleted.
web/edit_users.php | 33 +++++++++++++++++++++++++++++----
web/lang/lang.en | 3 +++
web/lib/MRBS/Auth/AuthDb.php | 18 ++++++++++++++++--
web/lib/MRBS/User.php | 28 ++++++++++++++++++++++++++++
web/systemdefaults.inc.php | 5 +++++
5 files changed, 81 insertions(+), 6 deletions(-)
commit ff88980a8
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Wed Sep 13 09:47:59 2023 +0100
Add HTML escaping for good measure
web/admin.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 27eb9b87b
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Wed Sep 13 09:39:01 2023 +0100
Fix potential PHP deprecation notice
web/admin.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 56b28caeb
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Mon Sep 11 21:36:46 2023 +0100
Add some basic language versions of the DataTables language files which are copies of the main country specific version (eg fr.json is a copy of fr-FR.json). See GitHub Issue #3502.
web/jquery/datatables/language/az.json (new) | 181 ++++++++++++
web/jquery/datatables/language/bs.json (new) | 74 +++++
web/jquery/datatables/language/de.json (new) | 243 ++++++++++++++++
web/jquery/datatables/language/es.json (new) | 242 ++++++++++++++++
web/jquery/datatables/language/fr.json (new) | 245 ++++++++++++++++
web/jquery/datatables/language/it.json (new) | 244 ++++++++++++++++
web/jquery/datatables/language/nl.json (new) | 246 +++++++++++++++++
web/jquery/datatables/language/pt.json (new) | 244 ++++++++++++++++
web/jquery/datatables/language/sv.json (new) | 199 +++++++++++++
9 files changed, 1918 insertions(+)
commit 3f88f786c
Merge: cd7c53e64 349ee9c91
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Mon Sep 11 17:31:03 2023 +0100
Merge pull request #3498 from meeting-room-booking-system/Issue_3496
Issue 3496
commit cd7c53e64
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Mon Sep 11 05:46:47 2023 -1000
Add comment.
web/js/edit_entry.js.php | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit 349ee9c91
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Mon Sep 11 05:23:02 2023 -1000
Fix properly.
web/js/datepicker.js.php | 22 ++++++++++++++++------
1 file changed, 16 insertions(+), 6 deletions(-)
commit 5dbbbb84c
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 10 16:24:25 2023 +0100
Revert last commit
web/systemdefaults.inc.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit b4ce80a11
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 10 16:15:27 2023 +0100
Remove diagnostic code
web/systemdefaults.inc.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 8ef537a56
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 10 15:19:22 2023 +0100
Remove diagnostic code
web/js/report.js.php | 1 -
1 file changed, 1 deletion(-)
commit e2c6522dd
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 10 15:13:02 2023 +0100
Increase default batch size
web/systemdefaults.inc.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 89e0d5208
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 10 15:10:24 2023 +0100
Move site back to being a POST parameter now that the max_input_vars problem is avoided
web/js/report.js.php | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
commit 440889ddf
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 10 15:00:49 2023 +0100
JSON encode the ids in order to avoid hitting the max_input_vars limit
web/ajax/del_entries.php | 6 ++++--
web/js/report.js.php | 3 ++-
2 files changed, 6 insertions(+), 3 deletions(-)
commit aba9daa0f
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 10 12:17:57 2023 +0100
Fix bug causing repeated deletion of entries after a cancellation.
web/js/report.js.php | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit 133cfbef2
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Sep 9 18:48:32 2023 +0100
Improve performance of bulk deletion
web/internalconfig.inc.php | 9 ---
web/js/report.js.php | 137 +++++++++++++++++++++--------------
web/systemdefaults.inc.php | 15 ++++
3 files changed, 98 insertions(+), 63 deletions(-)
commit 7406f40ff
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 8 19:13:19 2023 +0100
Throttle the Ajax requests to del_entries.php
web/internalconfig.inc.php | 2 ++
web/js/report.js.php | 24 ++++++++++++++++++++----
2 files changed, 22 insertions(+), 4 deletions(-)
commit 2936b1bb1
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 8 10:37:18 2023 +0100
Internationalise bad timezone message
web/import.php | 3 +--
web/lang/lang.en | 1 +
2 files changed, 2 insertions(+), 2 deletions(-)
commit 33fae7768
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 8 10:25:31 2023 +0100
Handle invalid timezones on import
web/import.php | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
commit 261dcaea5
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Sep 7 18:12:12 2023 +0100
Replace qualifier with import
web/functions_ical.inc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
commit 0b587b003
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Sep 7 18:05:23 2023 +0100
Add return type declaration
web/import.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 07932cd31
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Sep 7 18:03:32 2023 +0100
Replace qualifier with import
web/import.php | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
commit 6313e3d25
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Sep 7 17:36:05 2023 +0100
Add export and import of registration details (but not registrants at this stage)
web/functions_ical.inc | 20 ++++++++++++++-
web/import.php | 53 +++++++++++++++++++++++++++++-----------
2 files changed, 58 insertions(+), 15 deletions(-)
commit b2373cf52
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Wed Sep 6 06:58:23 2023 +0100
Fix bug when exporting and importing a series with a changed entry
web/functions_ical.inc | 13 +++----------
web/lib/MRBS/ICalendar/Series.php | 7 +++++--
2 files changed, 8 insertions(+), 12 deletions(-)
commit 8f3d772c5
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Sep 5 16:16:32 2023 +0100
Fix bug in recent commit
web/mrbs_sql.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 7e9b2a8e2
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Sep 5 16:06:32 2023 +0100
Add comment
web/mrbs_sql.inc | 1 +
1 file changed, 1 insertion(+)
commit 6d3278cc4
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Sep 5 16:00:07 2023 +0100
Fix bug when importing a series with a changed entry
web/mrbs_sql.inc | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
commit b9e818e32
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Sep 5 15:59:14 2023 +0100
Fix bug producing incorrect .ics files when exporting a series with a changed entry
web/functions_ical.inc | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
commit 9f67e8ac4
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Mon Sep 4 20:46:04 2023 +0100
Fix bug causing the EXDATE property to be ignored when importing events
web/import.php | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
commit 3ac44bac5
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Mon Sep 4 08:13:16 2023 +0100
Fix bug introduced in recent commits
web/functions_ical.inc | 2 ++
1 file changed, 2 insertions(+)
commit 46e99356e
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 3 13:45:17 2023 +0100
Restructure
web/lib/MRBS/Auth/AuthPop3.php | 83 +++++++++++++++-----------------
1 file changed, 39 insertions(+), 44 deletions(-)
commit 2786a23fb
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 3 10:44:40 2023 +0100
Simplify code
web/lib/MRBS/Auth/AuthPop3.php | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
commit b397e3786
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 3 10:21:01 2023 +0100
Simplify code
web/lib/MRBS/Auth/AuthPop3.php | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
commit 0a5309cde
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 3 10:11:19 2023 +0100
Simplify code
web/lib/MRBS/Auth/AuthPop3.php | 3 ---
1 file changed, 3 deletions(-)
commit a4f553897
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Sep 3 09:53:13 2023 +0100
Reduce stream timeout. See GitHub Issues #3497
web/lib/MRBS/Auth/AuthPop3.php | 69 ++++++++++++++++++--------------
1 file changed, 38 insertions(+), 31 deletions(-)
commit 7275c1b77
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Sep 2 06:23:24 2023 +0100
Simplify code
web/js/datepicker.js.php | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
commit 2cf3eb760
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 1 08:06:26 2023 +0100
Add comments
web/js/datepicker.js.php | 3 +++
1 file changed, 3 insertions(+)
commit fd7127b13
Merge: 6435c751b 7bffbd173
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 1 08:01:44 2023 +0100
Merge branch 'main' into Issue_3496
commit 7bffbd173
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 1 08:01:11 2023 +0100
Fix problem with the wrong minicalendars being shown in the month view when you're at the end of the month (eg Aug 31) and the next month has fewer days than the current one.
web/js/datepicker.js.php | 6 ++++++
1 file changed, 6 insertions(+)
commit 6435c751b
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Sep 1 07:32:27 2023 +0100
Fix problem with getting ISO Date strings in timezones other than UTC.
web/js/datepicker.js.php | 31 ++++++++++++++++++++++++++-----
1 file changed, 26 insertions(+), 5 deletions(-)
commit 5f8ed15ec
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Aug 29 18:58:56 2023 +0100
Upgraded to PHPMailer 6.8.1
web/lib/PHPMailer/README.md | 4 +-
web/lib/PHPMailer/VERSION | 2 +-
web/lib/PHPMailer/composer.json | 4 +-
.../PHPMailer/language/phpmailer.lang-fi.php | 1 -
.../PHPMailer/language/phpmailer.lang-fr.php | 1 -
.../PHPMailer/language/phpmailer.lang-nb.php | 45 ++++++++++--------
.../language/phpmailer.lang-si.php (new) | 34 +++++++++++++
.../language/phpmailer.lang-zh_cn.php | 11 ++++-
web/lib/PHPMailer/src/DSNConfigurator.php | 4 +-
web/lib/PHPMailer/src/PHPMailer.php | 4 +-
web/lib/PHPMailer/src/POP3.php | 2 +-
web/lib/PHPMailer/src/SMTP.php | 6 +--
12 files changed, 81 insertions(+), 37 deletions(-)
commit c6ed8a158
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 19:12:00 2023 +0100
Simplify code
web/edit_entry_handler.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 93ad0c6d8
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 19:08:07 2023 +0100
Change 'no_mail' to a boolean
web/edit_entry_handler.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 8b0409fc1
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 19:02:31 2023 +0100
Change 'skip' to a boolean
web/edit_entry_handler.php | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
commit 3b6860761
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 18:53:58 2023 +0100
Simplify code
web/edit_entry.php | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
commit 0cd2166c5
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 18:50:36 2023 +0100
Simplify code
web/edit_entry.php | 29 ++++++-----------------------
1 file changed, 6 insertions(+), 23 deletions(-)
commit 1cabc3f06
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 18:43:29 2023 +0100
Change 'copy' to a boolean
web/edit_entry.php | 12 ++++++------
web/view_entry.php | 17 ++++++++++-------
2 files changed, 16 insertions(+), 13 deletions(-)
commit 95c2ab39a
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 17:52:32 2023 +0100
Format code
web/view_entry.php | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
commit 42409e4c6
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 17:50:39 2023 +0100
Format code
web/view_entry.php | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
commit 67bb4fef4
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 17:48:44 2023 +0100
Replace $edit_type (string) with $edit_series (bool)
web/edit_entry.php | 16 ++++++++--------
web/edit_entry_handler.php | 6 +++---
web/mrbs_sql.inc | 6 +++---
web/view_entry.php | 16 ++++++++--------
4 files changed, 22 insertions(+), 22 deletions(-)
commit 1411f8a6f
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 20 17:23:12 2023 +0100
Simplify the use of edit_type, limiting it to signify whether a series is being edited.
web/edit_entry.php | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
commit 427cb477b
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Aug 19 19:00:32 2023 +0100
Make variable names clearer
web/mrbs_sql.inc | 66 +++++++++++++++++++++++-----------------------
1 file changed, 33 insertions(+), 33 deletions(-)
commit 6e1d073e9
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Aug 19 18:37:32 2023 +0100
Add type declaration
web/mrbs_sql.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 557f1b365
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Aug 19 18:07:14 2023 +0100
Add type declaration
web/mrbs_sql.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 95a177aa0
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Aug 19 18:01:40 2023 +0100
Correct typo in comment
web/edit_entry.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit ba0fb78af
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 18 19:05:35 2023 +0100
Fix problem with the end date still being visible when multi-day bookings are not allowed.
web/css/mrbs.css.php | 4 ++++
web/edit_entry.php | 8 ++++----
2 files changed, 8 insertions(+), 4 deletions(-)
commit a9a6f7835
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 18 18:51:22 2023 +0100
Make the end_date required
web/edit_entry.php | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
commit 86e604fb9
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 18 13:36:23 2023 +0100
Make the rep_end_date required for repeats
web/js/edit_entry.js.php | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
commit 43d0bcf03
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 18 12:35:30 2023 +0100
Add comments
web/js/datepicker.js.php | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit c6c089d7c
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 18 10:42:02 2023 +0100
Fix bug introduced in last commit
web/js/datepicker.js.php | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
commit c5abe0e33
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 18 10:24:16 2023 +0100
Restrict forcing datepickers to contain a date to those with the required attribute
web/js/datepicker.js.php | 33 +++++++++++++++++----------------
1 file changed, 17 insertions(+), 16 deletions(-)
commit fa1efac70
Merge: 860165944 35bff94ee
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Aug 17 10:15:32 2023 +0100
Merge remote-tracking branch 'origin/main'
commit 860165944
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Aug 17 10:12:18 2023 +0100
Fix problem with datepickers returning empty strings when Backspace or Delete is pressed
web/js/datepicker.js.php | 28 ++++++++++++++++++++++------
1 file changed, 22 insertions(+), 6 deletions(-)
commit ed108a4bd
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Wed Aug 16 17:37:23 2023 +0100
Fix typo in comment
web/js.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 16cd3ea54
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Aug 15 20:11:59 2023 +0100
Fix typo in comment
web/lib/MRBS/Locale.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 0505d8828
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Aug 15 20:07:23 2023 +0100
Add type declaration
web/language.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit d7540d223
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Aug 15 19:59:42 2023 +0100
Add type declaration
web/language.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit d467a3aed
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Aug 15 19:26:59 2023 +0100
Remove redundant global declaration
web/functions_view.inc | 1 -
1 file changed, 1 deletion(-)
commit de85306c8
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Aug 15 19:20:41 2023 +0100
Remove redundant code
web/view_entry.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 22f8e6157
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Tue Aug 15 19:03:03 2023 +0100
Fix typo in comment
web/view_entry.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 35bff94ee
Author: John Beranek <jberanek@users.sourceforge.net>
Date: Tue Aug 15 10:54:13 2023 +0100
MRBS Docker container now builds the PHP 'intl' extension from source
Dockerfile | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
commit b79430d70
Author: John Beranek <jberanek@users.sourceforge.net>
Date: Tue Aug 15 10:31:40 2023 +0100
MRBS Docker container updated to PHP 8.2 and updated PHP intl package name
Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit fa2e16a67
Author: John Beranek <jberanek@users.sourceforge.net>
Date: Tue Aug 15 10:28:46 2023 +0100
MRBS Docker container will now install the PHP intl extension.
Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 86396d7e4
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Mon Aug 14 10:23:01 2023 +0100
Fix bug introduced in recent commit
web/view_entry.php | 39 +++++++++++++++++++++++----------------
1 file changed, 23 insertions(+), 16 deletions(-)
commit 0da4701af
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sun Aug 13 12:06:50 2023 +0100
Fix bug introduced in recent commit
web/mrbs_auth.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit d84929fd0
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Aug 12 12:21:08 2023 +0100
Replace var with const
web/js/datatables.js.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit d24d0532f
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Sat Aug 12 12:16:58 2023 +0100
Add "Copy email addresses" button to registrants table
web/js/datatables.js.php | 52 ++++++++++++++++++++++++++++++++++++++
web/js/report.js.php | 37 +--------------------------
web/js/view_entry.js.php | 28 ++++++++++++++++++--
web/view_entry.php | 4 +--
4 files changed, 81 insertions(+), 40 deletions(-)
commit 2cd0ca206
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 11 18:38:44 2023 +0100
Add mailto: links to registrants table
web/view_entry.php | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
commit c58b282f2
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 11 18:22:39 2023 +0100
Eliminate duplicate code
web/view_entry.php | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
commit c25aa5606
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 11 17:45:10 2023 +0100
Disallow viewing of email addresses if the email field in the users table is private
web/mrbs_auth.inc | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
commit b1562c8b9
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 11 17:38:06 2023 +0100
Fix typo in comment
web/mrbs_auth.inc | 10 ++++++++--
web/systemdefaults.inc.php | 2 +-
2 files changed, 9 insertions(+), 3 deletions(-)
commit 2b8df81be
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 11 17:31:26 2023 +0100
Add type declaration
web/mrbs_auth.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit f236a7216
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 11 17:29:15 2023 +0100
Restructure
web/functions_view.inc | 6 ++----
web/mrbs_auth.inc | 23 +++++++++++++++++++++++
2 files changed, 25 insertions(+), 4 deletions(-)
commit ac47ac7bd
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 11 17:10:53 2023 +0100
Add type declaration
web/mrbs_auth.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 10166df26
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 11 16:56:45 2023 +0100
Restrict ability to see email addresses in reports to admins, for privacy reasons
web/js/report.js.php | 101 +++++++++++++++++++++--------------------
web/report.php | 11 +++--
2 files changed, 59 insertions(+), 53 deletions(-)
commit f27b75079
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Fri Aug 11 11:13:11 2023 +0100
Provide a default for rep_interval to prevent uncaught exceptions on post requests
web/edit_entry_handler.php | 7 +++++++
1 file changed, 7 insertions(+)
commit 25f9d0197
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Aug 10 19:19:17 2023 +0100
Restructure
web/js/edit_entry.js.php | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
commit 4ee74d9d9
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Aug 10 19:00:29 2023 +0100
Add a 'required' attribute to the rep_interval field
web/js/edit_entry.js.php | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
commit 3fd52a6e8
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Aug 10 07:08:31 2023 +0100
Fix type declaration
web/lib/MRBS/DateTime.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit be7464982
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Thu Aug 10 07:00:52 2023 +0100
Add type declaration
web/lib/MRBS/DateTime.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 5f5fd4d68
Merge: 5a1e58548 170bab449
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Wed Aug 9 19:43:45 2023 +0200
Merge pull request #3487 from edmundseow/update-saml-syntax
Updated SimpleSAML namespace separator to backslash
commit 5a1e58548
Author: campbell-m <87438215+campbell-m@users.noreply.github.com>
Date: Wed Aug 9 17:24:28 2023 +0100
Fix recently introduced bug causing a fatal error when booking repeats when using PHP 7. See GitHub Issues #3488.