-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
20150 lines (16650 loc) · 720 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2017-02-26 John Beranek <jberanek@users.sourceforge.net>
* web/version_num.inc:
Updated version number for release
[0068c1f9867d] [tip]
2017-02-26 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/css/mrbs.css.php:
Fixed the header height when there are error messages sent to the
browser
[a0651591b1f3]
* web/Themes/default/header.inc:
Made the "simple" banner work, used when there's a fatal error.
[754af658c049]
2017-02-25 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/Themes/default/header.inc, web/css/mrbs.css.php:
Fixed header layout problem in IE11 and below when using a tall
logo. See SF Support Requests #1158.
[69eb423578d1]
2017-02-23 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/approve_entry_handler.php:
Fixed bug causing incorrect status to be given on mails sent out
when an entry is approved. See SF Bugs #320.
[67a6912f5789]
* web/session/session_cookie.inc:
Fixed checking of return value of getUserName()
[0ab691c6b12c]
2017-02-21 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/session/session_cookie.inc:
Fixed bug causing getUserName() to return '' instead of null in the
case of a user not being logged in when using the cookie session
scheme.
[ef7604ce0988]
* web/functions.inc:
Fixed bug to do with the booking day. Haven't worked out what the
symptoms would be.
[41cae1cac811]
2017-02-15 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/Themes/default/header.inc:
Tidied up escaping for consistency (makes no difference to the
result).
[91821fae5745]
* web/auth/auth_ldap.inc:
Fixed a namespace problem. See SF Support Requests #1143.
[ef7f8563f64f]
2017-02-13 John Beranek <jberanek@users.sourceforge.net>
* web/css/mrbs.css.php:
Tweaked $admin_form_label_width in the CSS, to stop the new label in
"Add Room" from wrapping in the English translation at least.
[abae2b322e39]
2017-02-13 Campbell Morrison <cimorrison@hg.code.sf.net>
* Merge
[19b125d31c5e]
* web/systemdefaults.inc.php:
Merge
[57d1e460b0b8]
* web/systemdefaults.inc.php:
Added an unset() for $booking_types to make it clearer how they work
- see SF Bugs #374
[08582411d9fa]
2017-02-13 John Beranek <jberanek@users.sourceforge.net>
* web/add.php, web/admin.php, web/mrbs_sql.inc:
Added ability to specify the "Room admin email" on creating a room.
See SF Support Requests [support-requests:#1137].
[2acf048afe8c]
2017-02-12 John Beranek <jberanek@users.sourceforge.net>
* .hgignore:
Added extra .hginore rules for IDE files.
[c94106d28d18]
* AUTHENTICATION, README, README.nwauth, UPGRADE, auth_ldap.pl,
auth_ldapsearch.pl, badpw.pl, convert_db_to_utf8.php,
crypt_passwd.pl, grant.pg.sql, help_report.html, purge.my.sql,
purge.pg.sql, tables.my.sql, tables.pg.sql, upgrade.my.sql,
upgrade2.my.sql, upgrade2.pg.sql, upgrade3.my.sql,
web/Themes/classic126/styling.inc, web/Themes/default/footer.inc,
web/Themes/default/header.inc, web/Themes/default/styling.inc,
web/add.php, web/admin.php, web/approve_entry_handler.php,
web/areadefaults.inc.php, web/auth/auth_auth_basic.inc,
web/auth/auth_config.inc, web/auth/auth_crypt.inc,
web/auth/auth_db.inc, web/auth/auth_ext.inc, web/auth/auth_imap.inc,
web/auth/auth_imap_php.inc, web/auth/auth_ldap.inc,
web/auth/auth_nis.inc, web/auth/auth_none.inc, web/auth/auth_nw.inc,
web/auth/auth_pop3.inc, web/auth/auth_smtp.inc,
web/check_slot_ajax.php, web/css/mrbs-ie-rtl.css, web/css/mrbs-
ie.css, web/css/mrbs-ie8.css, web/css/mrbs-ielte6.css, web/css/mrbs-
ielte7.css.php, web/css/mrbs-ielte8.css, web/css/mrbs-mail.css,
web/css/mrbs-print.css.php, web/css/mrbs-rtl.css.php,
web/css/mrbs.css.php, web/day.php, web/dbsys.inc,
web/defaultincludes.inc, web/del.php, web/del_entry.php,
web/del_entry_ajax.php, web/edit_area_room.php, web/edit_entry.php,
web/edit_entry_handler.php, web/edit_users.php, web/functions.inc,
web/functions_ical.inc, web/functions_mail.inc,
web/functions_table.inc, web/functions_view.inc,
web/grab_globals.inc.php, web/help.php, web/import.php,
web/index.php, web/internalconfig.inc.php,
web/jquery/datatables/js/plugins.js, web/js.inc,
web/js/admin.js.php, web/js/cell_click.js.php,
web/js/datatables.js.php, web/js/datepicker.js.php,
web/js/edit_area_room.js.php, web/js/edit_entry.js.php,
web/js/edit_users.js.php, web/js/functions.js.php,
web/js/general.js.php, web/js/multiple.js.php,
web/js/pending.js.php, web/js/refresh.js.php, web/js/report.js.php,
web/js/resizable.js.php, web/js/search.js.php, web/lang/lang.ca,
web/lang/lang.cs, web/lang/lang.da, web/lang/lang.de,
web/lang/lang.el, web/lang/lang.en, web/lang/lang.es,
web/lang/lang.eu, web/lang/lang.fi, web/lang/lang.fr,
web/lang/lang.hu, web/lang/lang.id, web/lang/lang.it,
web/lang/lang.nb, web/lang/lang.nl, web/lang/lang.nn,
web/lang/lang.no, web/lang/lang.pl, web/lang/lang.pt, web/lang/lang
.pt-br, web/lang/lang.ru, web/lang/lang.sl, web/lang/lang.sr-rs-
latin, web/lang/lang.sv, web/lang/lang.th, web/lang/lang.tr,
web/lang/lang.zh-tw, web/language.inc, web/lib/Locale.php,
web/lib/autoload.inc, web/mincals.inc, web/month.php,
web/mrbs_auth.inc, web/mrbs_sql.inc, web/pending.php,
web/record_activity_ajax.php, web/report.php, web/search.php,
web/session/session_cookie.inc, web/session/session_host.inc,
web/session/session_http.inc, web/session/session_ip.inc,
web/session/session_nt.inc, web/session/session_omni.inc,
web/session/session_php.inc, web/session/session_remote_user.inc,
web/site_faq/site_faq.html, web/site_faq/site_faq_cs.html,
web/site_faq/site_faq_de.html, web/site_faq/site_faq_es.html,
web/site_faq/site_faq_fr.html, web/site_faq/site_faq_it.html,
web/site_faq/site_faq_nl.html, web/site_faq/site_faq_sv.html,
web/standard_vars.inc.php, web/style.inc,
web/systemdefaults.inc.php, web/theme.inc, web/trailer.inc,
web/upgrade.inc, web/upgrade/1/mysql.sql, web/upgrade/1/pgsql.sql,
web/upgrade/10/mysql.sql, web/upgrade/10/pgsql.sql,
web/upgrade/11/mysql.sql, web/upgrade/11/pgsql.sql,
web/upgrade/12/mysql.sql, web/upgrade/12/pgsql.sql,
web/upgrade/13/mysql.sql, web/upgrade/13/pgsql.sql,
web/upgrade/13/post.inc, web/upgrade/14/mysql.sql,
web/upgrade/14/pgsql.sql, web/upgrade/15/mysql.sql,
web/upgrade/15/post.inc, web/upgrade/16/mysql.sql,
web/upgrade/16/pgsql.sql, web/upgrade/16/post.inc,
web/upgrade/17/mysql.sql, web/upgrade/17/pgsql.sql,
web/upgrade/17/post.inc, web/upgrade/18/mysql.sql,
web/upgrade/18/pgsql.sql, web/upgrade/19/mysql.sql,
web/upgrade/19/pgsql.sql, web/upgrade/2/mysql.sql,
web/upgrade/2/pgsql.sql, web/upgrade/2/post.inc,
web/upgrade/20/mysql.sql, web/upgrade/20/pgsql.sql,
web/upgrade/21/mysql.sql, web/upgrade/21/post.inc,
web/upgrade/22/mysql.sql, web/upgrade/22/pgsql.sql,
web/upgrade/23/mysql.sql, web/upgrade/23/pgsql.sql,
web/upgrade/24/mysql.sql, web/upgrade/24/pgsql.sql,
web/upgrade/24/post.inc, web/upgrade/25/mysql.sql,
web/upgrade/25/pgsql.sql, web/upgrade/26/mysql.sql,
web/upgrade/26/post.inc, web/upgrade/27/mysql.sql,
web/upgrade/27/pgsql.sql, web/upgrade/28/mysql.sql,
web/upgrade/28/pgsql.sql, web/upgrade/29/mysql.sql,
web/upgrade/29/pgsql.sql, web/upgrade/3/mysql.sql,
web/upgrade/3/pgsql.sql, web/upgrade/30/mysql.sql,
web/upgrade/30/pgsql.sql, web/upgrade/31/mysql.sql,
web/upgrade/31/pgsql.sql, web/upgrade/32/mysql.sql,
web/upgrade/32/pgsql.sql, web/upgrade/32/post.inc,
web/upgrade/33/mysql.sql, web/upgrade/34/mysql.sql,
web/upgrade/34/pgsql.sql, web/upgrade/34/post.inc,
web/upgrade/35/mysql.sql, web/upgrade/36/mysql.sql,
web/upgrade/36/pgsql.sql, web/upgrade/37/mysql.sql,
web/upgrade/38/mysql.sql, web/upgrade/38/pgsql.sql,
web/upgrade/39/mysql.sql, web/upgrade/4/mysql.sql,
web/upgrade/4/pgsql.sql, web/upgrade/4/post.inc,
web/upgrade/40/mysql.sql, web/upgrade/40/pgsql.sql,
web/upgrade/41/mysql.sql, web/upgrade/41/pgsql.sql,
web/upgrade/42/mysql.sql, web/upgrade/42/pgsql.sql,
web/upgrade/43/mysql.sql, web/upgrade/43/pgsql.sql,
web/upgrade/43/post.inc, web/upgrade/44/mysql.sql,
web/upgrade/44/pgsql.sql, web/upgrade/45/mysql.sql,
web/upgrade/45/pgsql.sql, web/upgrade/47/post.inc,
web/upgrade/49/mysql.sql, web/upgrade/49/pgsql.sql,
web/upgrade/5/mysql.sql, web/upgrade/5/post.inc,
web/upgrade/6/mysql.sql, web/upgrade/6/post.inc,
web/upgrade/7/mysql.sql, web/upgrade/7/post.inc,
web/upgrade/8/mysql.sql, web/upgrade/8/pgsql.sql,
web/upgrade/8/post.inc, web/upgrade/9/mysql.sql,
web/upgrade/9/pgsql.sql, web/upgrade/local/1/mysql.sql,
web/upgrade/local/1/pgsql.sql, web/version.inc, web/view_entry.php,
web/week.php:
Removed all occurrences of $Id$ in MRBS code, it doesn't work with
Mercurial source control.
[b6b7543a1ac5]
2017-02-11 John Beranek <jberanek@users.sourceforge.net>
* .hgtags:
Added tag mrbs-1_6_0 for changeset 04c083c470a1
[14f4f5b4b59c]
* Merged changes from default branch
[04c083c470a1] [mrbs-1_6_0]
* .hgtags:
Added tag mrbs-1_6_0 for changeset e71136a26776
[11333837a8ce]
* NEWS:
Fixed permissions on NEWS
[e71136a26776]
* ChangeLog, NEWS:
Updated ChangeLog and NEWS for 1.6.0 release
[f2ba00a8841b]
* UPGRADE:
Added MRBS 1.6.0 upgrade step to UPGRADE.
[8de8b062a9d3]
2017-02-02 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/functions.inc:
Fixed bug introduced in recent commit
[ce506efb8fac]
2017-02-11 John Beranek <jberanek@users.sourceforge.net>
* web/version_num.inc:
Updated version number in preparation for release
[7346e8dfc1d6]
2017-01-31 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/edit_area_room.php:
Restructured code
[93874f9750d0]
* web/css/mrbs.css.php, web/import.php:
Restructured code
[8eb7b2bc4923]
* web/functions.inc, web/import.php, web/lang/lang.en,
web/mrbs_sql.inc:
Added the ability to specify a default room if no LOCATION property
is given when importing a VEVENT
[017e435c99b5]
2017-01-30 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/import.php:
Added the ability to recocgnise type information in imported .ics
files using the X-MRBS-TYPE property.
[80052eb62baa]
* web/functions_ical.inc:
Added the booking type when exporting as a .ics file
[7f9da2c50e55]
* web/import.php:
Fixed bug preventing an event whose room name includes the area-room
separator from being imported.
[ce7ea3de1514]
2017-01-20 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/Themes/classic126/styling.inc, web/Themes/default/styling.inc,
web/css/mrbs.css.php, web/functions_table.inc, web/month.php:
Fixed bug that allowed the type colour to be shown even when the
type was private. See SF bugs #372.
[ff4f3916c8eb]
* web/month.php:
Fixed bug causing bookings to be shown as private when they weren't.
[532717464595]
* web/month.php:
Restructured code to use new function get_end_last_slot().
[ebc7c40bb991]
2017-01-18 John Beranek <jberanek@users.sourceforge.net>
* web/functions_mail.inc, web/systemdefaults.inc.php:
Added a new option to disable "Opportunistic TLS" in PHPMailer.
[336e9f89eb59]
2017-01-18 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/edit_entry.php:
Made sure that the default duration for new bookings doesn't exceed
the maximum duration
[e5cec8ee77b5]
2017-01-17 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/edit_entry.php:
Fixed problem when the default duration takes a booking beyond the
start day and multiday bookings are not allowed.
[616210bd53b6]
* web/functions.inc:
Fixed bug introduced in recent change. See SF Support Requests
#1116.
[17722e310c1a]
2017-01-10 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/edit_entry.php, web/functions.inc:
Fixed problem with default_duration not going past the end of a
booking day. See SF Support Requests #116
[81c9eb134647]
2017-01-07 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/functions_mail.inc:
Limited use of the error suppression operator when sending mail to
just those cases where it is necessary, and even then MRBS will
trigger an E_USER_NOTICE error.
[7a02bb005992]
2017-01-01 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/functions_mail.inc:
Fixed bug causing a fatal error in SMTP debug code
[639d2c8bd5c0]
2016-12-29 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/functions_mail.inc, web/lib/PHPMailer/VERSION,
web/lib/PHPMailer/class.phpmailer.php,
web/lib/PHPMailer/class.phpmaileroauth.php,
web/lib/PHPMailer/class.phpmaileroauthgoogle.php,
web/lib/PHPMailer/class.pop3.php, web/lib/PHPMailer/class.smtp.php,
web/lib/PHPMailer/get_oauth_token.php,
web/lib/PHPMailer/language/phpmailer.lang-ar.php,
web/lib/PHPMailer/language/phpmailer.lang-bg.php,
web/lib/PHPMailer/language/phpmailer.lang-ca.php,
web/lib/PHPMailer/language/phpmailer.lang-ch.php,
web/lib/PHPMailer/language/phpmailer.lang-cs.php,
web/lib/PHPMailer/language/phpmailer.lang-da.php,
web/lib/PHPMailer/language/phpmailer.lang-de.php,
web/lib/PHPMailer/language/phpmailer.lang-el.php,
web/lib/PHPMailer/language/phpmailer.lang-es.php,
web/lib/PHPMailer/language/phpmailer.lang-fi.php,
web/lib/PHPMailer/language/phpmailer.lang-fo.php,
web/lib/PHPMailer/language/phpmailer.lang-gl.php,
web/lib/PHPMailer/language/phpmailer.lang-he.php,
web/lib/PHPMailer/language/phpmailer.lang-hr.php,
web/lib/PHPMailer/language/phpmailer.lang-ja.php,
web/lib/PHPMailer/language/phpmailer.lang-ka.php,
web/lib/PHPMailer/language/phpmailer.lang-ko.php,
web/lib/PHPMailer/language/phpmailer.lang-lt.php,
web/lib/PHPMailer/language/phpmailer.lang-lv.php,
web/lib/PHPMailer/language/phpmailer.lang-ms.php,
web/lib/PHPMailer/language/phpmailer.lang-nb.php,
web/lib/PHPMailer/language/phpmailer.lang-nl.php,
web/lib/PHPMailer/language/phpmailer.lang-pl.php,
web/lib/PHPMailer/language/phpmailer.lang-pt.php,
web/lib/PHPMailer/language/phpmailer.lang-pt_br.php,
web/lib/PHPMailer/language/phpmailer.lang-ro.php,
web/lib/PHPMailer/language/phpmailer.lang-ru.php,
web/lib/PHPMailer/language/phpmailer.lang-sl.php,
web/lib/PHPMailer/language/phpmailer.lang-sr.php,
web/lib/PHPMailer/language/phpmailer.lang-sv.php,
web/lib/PHPMailer/language/phpmailer.lang-vi.php,
web/lib/PHPMailer/language/phpmailer.lang-zh_cn.php:
Upgraded PHPMailer to latest version (5.2.21)
[f32b475f5377]
* web/functions_error.inc:
Fixed the custom error handler so that it doesn't report errors if
the error suppression operator has been used.
[b1834d82b9e1]
2016-12-13 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/day.php, web/month.php, web/week.php:
Moved the SQL query of the entry table until after the authorisation
check for the page has been done, to avoid unnecessary database
queries.
[5abfcd33114b]
2016-12-09 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/functions_mail.inc:
Improved error reporting when $mail_settings['from'] not set.
[891da51bdd07]
* web/auth/cms/joomla.inc, web/internalconfig.inc.php:
Got rid of the 'DS' (DIRECTORY_SEPARATOR) constant as it is
unnecessary and causes clashes with Joomla.
[32dcfd1f1928]
2016-12-05 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/css/mrbs.css.php, web/mincals.inc:
Simplified HTML
[6c4209d3e17a]
* web/Themes/default/header.inc, web/css/mrbs-print.css.php, web/css
/mrbs-rtl.css.php, web/css/mrbs.css.php:
Simplified CSS
[925b634d53e8]
* web/css/mrbs-print.css.php, web/day.php, web/month.php,
web/week.php:
Simplified HTML
[edb5504e6dee]
* web/css/mrbs-rtl.css.php:
Fixed CSS for Goto nav links for RTL languages
[c1ccc04f49f8]
* web/css/mrbs.css.php, web/day.php, web/month.php, web/week.php:
Simplified HTML for the Go to Day/Week/Month links.
[89f2e1355f77]
2016-12-04 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/day.php, web/month.php, web/week.php:
Removed whitespace that shouldn't be there
[001b47e6e80c]
* web/css/mrbs.css.php:
Simplify CSS
[69654721884d]
* web/css/mrbs.css.php:
Simplified CSS
[c4a5b686251b]
* web/css/mrbs.css.php, web/day.php, web/month.php, web/week.php:
Moved << and >> navigation symbols out of HTML and into CSS.
[e9ad88b317b2]
* web/day.php:
Removed unnecessary <div>
[b54aa41d7d06]
* web/day.php:
Reverted test code accidentally included in previous commit.
[4737d5b39c01]
* web/Themes/default/header.inc, web/css/mrbs.css.php, web/day.php:
Fixed height of header when debugging with display_errors set to
'1'.
[d327cca4654e]
* web/js.inc, web/js/html5shiv.js, web/js/html5shiv.min.js:
Added HTML5 Shiv version 3.7.3 so that HTML5 elelements such as
<header> can be styled in IE8 and below.
[847556466ab8]
2016-11-30 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/edit_area_room.php:
Minor tweak to code layout
[64d5a8c65b66]
* web/view_entry.php:
Fixed fatal error when exporting an entry from the view_entry page
[988fc0d15ef9]
2016-11-28 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/css/mrbs.css.php:
Fixed problem with layout of header
[dad05b9be5c4]
2016-11-16 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/mrbs_sql.inc:
Fixed bug causing fatal error when trying to delete a series.
[5629d1e5b477]
2016-11-15 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/systemdefaults.inc.php:
Fixed comment.
[74832ee64f3e]
2016-11-12 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/css/mrbs.css.php:
Simplified the CSS and got rid of the occasional 1px gap in the
month view cells. All browsers nowadays (IE8+, Edge, Firefox, Opera,
Chrome and Safari) seem to be able to handle sub-pixel rounding
sensibly.
[bf3c842d9f98]
2016-11-11 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/admin.php:
Replaced '...' with the ellipsis HTML entity.
[0f0b5e0e0ef2]
* web/css/mrbs-print.css.php:
Fixed problem with (a) right border of bookings not appearing when
using the 'both' option for monthly listings and (b) listings
wrapping when using 'slot' or 'description'.
[1698de3cad7d]
* web/css/mrbs.css.php, web/month.php:
Moved the width for monthly bookings out from a style attribute to
the CSS file
[f579e2084d16]
* web/css/mrbs-print.css.php:
Changed the behaviour of the printed month view, getting rid of
horizontal and vertical scrollbars. Instead, horizontal overflow is
hidden and the table cell expands to accommodate vertical overflow.
[51db18c07be9]
2016-11-10 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/css/mrbs-print.css.php:
Corrected comment
[8a1ea7a73085]
* web/css/mrbs-print.css.php:
Fixed bug that gave a double border on printing. See SF Support
Requests #1078. Also fixed another bug at the same time - there was
no border around bookings in the month view on printing.
[121ca8c114d9]
2016-11-09 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/css/mrbs-print.css.php:
Reverted the previous change, because although it removes the double
border it also removes the booking description
[cefd275617da]
* web/css/mrbs-print.css.php:
Fixed problem of double border on some cells when printing the day
and week views. See SF Support Requests #1078.
[6681c3d31494]
2016-11-05 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/internalconfig.inc.php, web/report.php:
Simplified code
[c01914aa1740]
* web/report.php:
Tidied up code
[1eddd0728dae]
* web/internalconfig.inc.php, web/lang/lang.en, web/report.php:
Changed report form so that for custom checkbox fields you can now
select checked, unchecked or both. See SF Support Requests #1087
[9449773680a2]
2016-11-04 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/edit_entry.php, web/systemdefaults.inc.php:
Made the default setting for the "Do not send email" checkbox a
configuration variable
[f9eb27fc309e]
2016-10-29 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/auth/auth_wordpress.inc:
Simplified code and added type hinting
[1be9c48d8f9c]
* web/auth/auth_joomla.inc:
Simplified code
[4269cec9ef42]
2016-10-28 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/auth/cms/joomla.inc:
Added some error handling
[128582afd203]
* web/auth/auth_joomla.inc, web/auth/auth_wordpress.inc,
web/auth/cms/joomla.inc, web/auth/cms/wordpress.inc, web/joomla.inc,
web/session/session_joomla.inc, web/session/session_wordpress.inc,
web/wordpress.inc:
Moved joomla.inc and wordpress.inc out of main directory
[33f7f9a44ca6]
* AUTHENTICATION:
Updated for joomla authentication scheme
[072fc74ae084]
* web/systemdefaults.inc.php:
Merge with joomla
[93e7c9b92280]
* AUTHENTICATION:
Updated details of WordPress authentication
[1276d8cdbfd1]
* web/auth/auth_wordpress.inc, web/systemdefaults.inc.php:
Added the config setting $auth['wordpress']['user_roles'] so it is
possible to define which WordPress users can use MRBS, instead of
just granting all logged in users access to MRBS.
[5ded93a54840]
* web/auth/auth_wordpress.inc:
Simplified code
[19a717b0d6d5]
2016-10-27 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/auth/auth_wordpress.inc, web/session/session_wordpress.inc,
web/wordpress.inc:
Fixed problem of duplicate define() in WordPress authentication
[c9602d3ac43b]
2016-10-22 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/grab_globals.inc.php:
Set the MRBS server variables to null if they don't exist in order
to avoid undefined variable errors later
[7ade092c8e6a]
* web/js/edit_users.js.php, web/js/search.js.php:
Tidied up a couple more instances of HTTP_REFERER parsing
[3bb3e398e659]
* web/js/report.js.php:
Fixed undefined offset notice error when there is no query string
[2960172fd950]
2016-10-20 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/functions.inc, web/internalconfig.inc.php:
Added some earlier checking for $timezone
[506fd1d7a13e]
* web/Themes/default/header.inc, web/functions.inc,
web/functions_error.inc:
Fixed problem with simple header not being output in some
circumstances.
[8f33c1da41a3]
* web/functions_error.inc:
Improved formatting of error messages
[fcd809de0c53]
* web/functions_error.inc:
Ensured that the timezone is set before trying to output an error
message, otherwise further error messages are produced.
[896e7b8ee1a8]
2016-10-18 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/js/resizable.js.php:
Fixed a performance problem when clicking on an empty cell in the
week view when using hidden days on a large table.
[8e4ed8a49b50]
* web/edit_area_room.php, web/functions.inc:
Fixed bug that resulted in possibly wrong values for enable_periods
and reminders_enabled being shown on the Edit Area form.
[fc1092d92649]
2016-10-17 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/lang/lang.ca, web/lang/lang.cs, web/lang/lang.da,
web/lang/lang.de, web/lang/lang.el, web/lang/lang.en,
web/lang/lang.es, web/lang/lang.eu, web/lang/lang.fi,
web/lang/lang.fr, web/lang/lang.he, web/lang/lang.hu,
web/lang/lang.id, web/lang/lang.it, web/lang/lang.ja,
web/lang/lang.ko, web/lang/lang.nb, web/lang/lang.nl,
web/lang/lang.nn, web/lang/lang.no, web/lang/lang.pl,
web/lang/lang.pt, web/lang/lang.pt-br, web/lang/lang.ru,
web/lang/lang.sk, web/lang/lang.sl, web/lang/lang.sr-rs-latin,
web/lang/lang.sv, web/lang/lang.th, web/lang/lang.tr, web/lang/lang
.zh-cn, web/lang/lang.zh-tw:
Removed redundant language tokens
[7d74aba2976c]
* web/lang/lang.ca, web/lang/lang.cs, web/lang/lang.da,
web/lang/lang.de, web/lang/lang.el, web/lang/lang.en,
web/lang/lang.es, web/lang/lang.eu, web/lang/lang.fi,
web/lang/lang.fr, web/lang/lang.he, web/lang/lang.hu,
web/lang/lang.id, web/lang/lang.it, web/lang/lang.ja,
web/lang/lang.ko, web/lang/lang.nb, web/lang/lang.nl,
web/lang/lang.nn, web/lang/lang.no, web/lang/lang.pl,
web/lang/lang.pt, web/lang/lang.pt-br, web/lang/lang.ru,
web/lang/lang.sk, web/lang/lang.sl, web/lang/lang.sr-rs-latin,
web/lang/lang.sv, web/lang/lang.th, web/lang/lang.tr, web/lang/lang
.zh-cn, web/lang/lang.zh-tw:
Removed redundant language tokens
[f4a10382146d]
2016-10-13 John Beranek <jberanek@users.sourceforge.net>
* Closed long abandoned head on 'default'.
[d2290c3da181]
2016-10-12 John Beranek <jberanek@users.sourceforge.net>
* Merge
[ea4eaf635cf5]
2016-10-12 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/edit_users.php:
Turned email addresses in the users list into links.
[0f83dfa471b5]
* web/lib/MRBS/DB_pgsql.php:
Added some error checking to DB_pgsql::table_exists().
[3e4c500f792c]
2016-10-11 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/lib/MRBS/DB_pgsql.php:
Fixed bug in DB_pgsql::table_exists() which meant that it always
returned true and thus broke the upgrade process, for example.
[fe0d186d752f]
2016-10-12 John Beranek <jberanek@users.sourceforge.net>
* checklang.php, web/session/session_cookie.inc,
web/session/session_php.inc:
Removed unnecessary uses of $HTTP_SESSION_VARS and
$HTTP_COOKIE_VARS.
[dec2897a7762]
2016-10-08 John Beranek <jberanek@users.sourceforge.net>
* NEWS, web/js.inc, web/lang/lang.it, web/mysqli.inc, web/pgsql.inc,
web/session/session_cookie.inc, web/systemdefaults.inc.php:
Merged the 'pdo' branch, which changes MRBS to utilise PHP's PDO
mechanism and use a DB class to perform all SQL. SQL statements are
now parameterised, and not just escaped in MRBS code.
[66a6e5425b3a]
2016-10-03 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/js/refresh.js.php, web/js/resizable.js.php:
Eliminated use of deprecated jQuery.fn.load()
[9b3d1f4083d5]
* web/jquery/jquery-2.1.0.js, web/jquery/jquery-2.1.0.min.js,
web/jquery/jquery-2.2.4.js, web/jquery/jquery-2.2.4.min.js,
web/jquery/jquery-migrate-1.2.1.js, web/jquery/jquery-
migrate-1.2.1.min.js, web/jquery/jquery-migrate-1.4.1.js, web/jquery
/jquery-migrate-1.4.1.min.js, web/js.inc:
Upgraded to latest version of jQuery 2.x branch
[095936af1e05]
* web/jquery/jquery-2.1.0.js, web/js.inc:
Added uncompressed version of jQuery for debugging
[d810207df887]
2016-10-02 John Beranek <jberanek@users.sourceforge.net>
* checklang.php:
A few improvements to checklang.php
[4537f79f8fe7]
* web/lang/lang.de:
Updated German translations from Andrea Beranek
[675911c25058]
2016-09-27 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/del.php:
Fixed problem with last change
[12cda8ce787e]
* web/del.php:
Added rollback to transaction
[5e3b6206f739]
* web/del_entry.php:
Removed unnecessary transaction
[0a52b0f5370b]
2016-09-26 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/dbsys.inc, web/edit_entry_handler.php, web/mrbs_sql.inc,
web/mysqli.inc:
Wrapped the edit procedure in a transaction. See SF Support Requests
#1064
[804e65cfa16b]
2016-09-17 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/systemdefaults.inc.php:
Fixed comment (see SF Bugs #365)
[35e9b7736f57]
2016-09-14 Campbell Morrison <cimorrison@hg.code.sf.net>
* Merge with namespace
[96572ec1bb00]
2016-09-13 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/lang/lang.en:
Trivial change to test commit
[8153a7626cec]
* web/auth/auth_ext.inc, web/escapeshellarg.inc:
Removed redundant code now that we only support PHP 5.3.0 and
greater
[dc7b7af18e03]
2016-08-27 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/month.php:
Simplified code
[a0ba6af5a90a]
* web/month.php:
Simplified code
[68201685dd13]
* web/month.php:
Simplified code
[cb7e5ae0640d]
* web/month.php:
Restructured code
[ccc32cc82ba7]
* web/month.php:
Fixed bug whereby bookings for the last slot were not being
displayed properly in the month view
[7e4376b7d270]
* web/month.php:
Simplified code
[08e75881e217]
* web/month.php:
Got rid of some SQL from month.php
[1637af6fc966]
* web/month.php:
Removed redundant line of code
[98fd06ddbec4]
* web/systemdefaults.inc.php:
Added comment
[6b6a36eae73e]
* web/month.php:
Restructured code
[dbab75e55723]
* web/js.inc, web/month.php, web/style.inc:
Changed refresh mechanism for month view to Ajax from meta refresh.
[29a6a9d34e94]
* web/js/general.js.php:
Fixed bug causing form validation to fail when using datalist inputs
[a014f5654e12]
2016-08-26 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/js/functions.js.php:
Added comment
[bb0432ba6d64]
* web/js/functions.js.php, web/js/refresh.js.php:
Disabled page refresh if running over a metered network connection.
[26efe3bc4f8e]
2016-08-25 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/lang/lang.de:
Changed German translation for rep_num_weeks. Thanks to Michael
Hellwig.
[34ce794ea426]
2016-08-18 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/edit_users.php:
Fixed bug preventing the username being set to '0'
[68875197b0e9]
* web/edit_users.php:
Fixed bug preventing the password being set to '0' (not that you'd
want to do that)
[580cff0d105b]
* web/edit_users.php:
Fixed bug causing password validation not to be performed.
[e57d8eb0d7db]
2016-08-17 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/functions_table.inc, web/js/resizable.js.php:
Fixed bug introduced in changeset ccbec44d3779 causing resized
bookings to be set the to the default type.
[e97775100e4d]
* web/functions.inc:
Made MRBS fall back to the default footer if none exists in the
theme (as happens with the header).
[68f49b0e54e5]
2016-08-15 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/edit_users.php, web/systemdefaults.inc.php:
Allowed custom fields in the users table to be writable only by
admins
[568384810b7d]
2016-08-14 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/session/session_wordpress.inc:
Fixed bug causing WordPress plugins not to recognise login errors
[f916461ef2e6]
* web/session/session_wordpress.inc:
replaced the value of the login Submit button with the WordPress
text.
[5d812c09bdc1]
* web/session/session_wordpress.inc:
Restructured code
[473376989314]
* web/session/session_php.inc, web/session/session_wordpress.inc:
Removed redundant global declarations.
[2ccc15be1b56]
* web/session/session_wordpress.inc:
Replaced login form labels with WordPress text strings
[7f5aa1a3e434]
2016-08-10 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/session/session_wordpress.inc:
Added apply_filters() to login error message so that any plugin
filters will be aaplied correctly.
[f97399a6b69a]
* web/session/session_wordpress.inc:
Changed the login error message to be the standard WordPress merror
message when using WordPress authentication.
[21c0eea889fb]
2016-08-04 Campbell Morrison <cimorrison@hg.code.sf.net>
* AUTHENTICATION, web/systemdefaults.inc.php:
Changed the default admin role in the WordPress authentication
scheme to be the WordPress 'Administrator' role. Also added
documentation on changes necessary to the WordPress wp-config.php
file to enable authentication cookies to be shared between MRBS and
WordPress.
[8291498fe3c0]
* web/session/session_wordpress.inc:
Changed setting of 'remember_me' to FALSE when logging on through
MRBS using the WordPress authentication scheme. (Even so, the
default WordPress behaviour is to remember for 2 days. Setting
'remember_me' extends it to 14.5 days).
[974b9bbcc2e7]
2016-08-02 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/defaultincludes.inc, web/grab_globals.inc.php:
Fixed problem with slashing of $_GET and $_POST variables when using
WordPress authentication. (See SF Support Requests #1034).
[3b337fc380e1]
* web/grab_globals.inc.php:
Got rid of usage of $HTTP_GET_VARS, $HTTP_POST_VARS and
$HTTP_SERVER_VARS (no longer necessary)
[0095b456f19e]
2016-07-28 Campbell Morrison <cimorrison@hg.code.sf.net>
* AUTHENTICATION, web/auth/auth_wordpress.inc,
web/internalconfig.inc.php, web/session/session_wordpress.inc,
web/systemdefaults.inc.php:
Added WordPress authentication (for WordPress installations running
on the same server as MRBS).
[3a55ae0c20dc]
2016-07-20 Campbell Morrison <cimorrison@hg.code.sf.net>
* web/js/edit_entry.js.php:
Fixed some JSHint problems
[fca0ff99c225]
* web/month.php:
Fixed potential problem with end time selector in edit_entry.php
being blank when coming from the month view. See SF Support Requests
#983.