-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
19073 lines (13516 loc) · 695 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
2014-05-28 15:53 Campbell Morrison <[email protected]>
* [r2840] web/functions_ical.inc, web/functions_mail.inc:
Fixed bug in export of an event: the description included the
complete booking details instead of just the description.
2014-05-28 15:20 Campbell Morrison <[email protected]>
* [r2839] web/functions_ical.inc, web/import.php,
web/systemdefaults.inc.php:
Made the default area and room consistent on import and export of
an event. See SF Support Requests #541
2014-05-22 09:54 Campbell Morrison <[email protected]>
* [r2838] web/admin.php:
Changed form action link to a relative path name from an absolute
path name, which was causing problems on some sites with reverse
proxy rules. See the bug report on the MRBS-general mailing list.
2014-05-09 11:29 Campbell Morrison <[email protected]>
* [r2837] web/css/mrbs.css.php:
Fixed problem with resizing bookings in IE. See SF Bugs #293 and
#300.
2014-05-09 09:38 Campbell Morrison <[email protected]>
* [r2836] web/css/mrbs.css.php:
Fixed problem with colour key and trailer shifting downwards
during a booking resize in IE. See SF Bugs #300
2014-04-27 17:37 Campbell Morrison <[email protected]>
* [r2832] web/style.inc:
Added nofollow to robots meta tag. See SF Bugs #298
2014-04-27 17:10 Campbell Morrison <[email protected]>
* [r2831] web/functions_ical.inc, web/systemdefaults.inc.php:
Changed the ORGANIZER in an iCalendar event to be a new email
address, defined as $mail_settings['organizer'] and not the
creator. This is to avoid a problem in some mail systems, eg IBM
Domino, where an iCalendar event notification email is silently
discarded if the organizer's email address is the same as the
recipient's
2014-04-27 10:06 Campbell Morrison <[email protected]>
* [r2830] web/functions_ical.inc:
Added a LAST-MODIFIED property to all VEVENTS
2014-04-26 15:44 Campbell Morrison <[email protected]>
* [r2829] web/Mail/mime.php, web/Mail/mimePart.php:
Upgraded Mail_Mime package to Version 1.8.8
2014-04-02 17:17 Campbell Morrison <[email protected]>
* [r2828] web/language.inc:
Added an alternative for the %e modifier for strftime() when
running on Windows. See also SF Support Requests #521
2014-03-17 15:55 Campbell Morrison <[email protected]>
* [r2827] web/edit_users.php:
Corrected typo in comment
2014-03-09 10:03 Campbell Morrison <[email protected]>
* [r2826] web/js/resizable.js.php:
Fixed a problem in the day and week views with resizable bookings
not filling the whole time period when $clipped is set to FALSE.
See SF Support Requests #503.
2014-03-08 10:02 Campbell Morrison <[email protected]>
* [r2825] web/functions.inc:
Fixed bug in last change
2014-03-08 09:09 Campbell Morrison <[email protected]>
* [r2824] web/edit_entry.php, web/functions.inc:
Made the first option of a radio button group the default value
if no value is given, mirroring the way a <select> element works.
2014-03-07 11:10 Campbell Morrison <[email protected]>
* [r2823] web/functions.inc, web/functions_mail.inc,
web/language.inc, web/mrbs_sql.inc:
Converted a few substr() and strlen() calls to their utf8_
equivalents for good measure
2014-03-03 17:38 Campbell Morrison <[email protected]>
* [r2822] web/edit_area_room.php, web/edit_entry.php,
web/functions.inc, web/report.php:
Changed the operation for generate_radio_group() so that it
operates in the same way as generate_select() and can take either
a simple or an associative array. This enables custom fields to
be presented as radio buttons instead of as <select> elements if
desired. See SF Support Requests #489.
2014-02-25 16:13 Campbell Morrison <[email protected]>
* [r2821] web/language.inc:
Fixed bug in utf8_substr() on 64 bit Linux systems caused by an
underlying bug in mb_substr()
2014-02-24 13:44 Campbell Morrison <[email protected]>
* [r2820] web/language.inc:
Added locale mappings for 'nb' ( => 'nb_NO') and 'nn' (=>
'nn_NO')
2014-02-22 18:22 Campbell Morrison <[email protected]>
* [r2819] web/functions_ical.inc:
Added escaping and unescaping of '\N' in property values
(required by RFC 5545 Section 3.3.11)
2014-02-14 10:12 Campbell Morrison <[email protected]>
* [r2818] web/import.php:
Modified import.php so that it is tolerant of blank lines at the
start of the file and also between components (eg VEVENTS).
Strictly speaking these are not allowed according to RFC5545, but
it does no harm to tolerate them.
2014-02-13 18:53 Campbell Morrison <[email protected]>
* [r2817] web/jquery/ui/jquery-ui-i18n.MRBS.js:
Added an en-IE regional setting for the datepicker
2014-02-13 11:34 Campbell Morrison <[email protected]>
* [r2816] web/language.inc:
Fixed some errors in the Windows language map and expanded the
Windows codepage map
2014-02-13 10:11 Campbell Morrison <[email protected]>
* [r2815] web/language.inc:
Fixed problem with es-CO on Windows. See SF Support Requests 477.
Also added support for the remaining Spanish variants.
2014-02-10 18:37 Campbell Morrison <[email protected]>
* [r2814] web/functions_mail.inc, web/language.inc:
Fixed bug causing dates in mail messages to be in the wrong
language when the main MRBS language differs from the mail
language. See SF Support Requests #474.
2014-02-09 14:26 Campbell Morrison <[email protected]>
* [r2813] web/edit_entry_handler.php:
Changed error level for missing id from E_USER_WARNING to
E_USER_NOTICE (see SF Feature Requests 249)
2014-02-09 09:41 Campbell Morrison <[email protected]>
* [r2812] web/js/resizable.js.php:
Fixed problem with shaded selection sometimes not snapping to the
edge of the slot when selecting a group of empty slots. Bug
caused by the fact that .offset() in some browsers (eg Firefox)
returns decimal values calculated from styling rather than
integer pixel values from rendering.
2014-02-08 11:38 Campbell Morrison <[email protected]>
* [r2811] web/jquery/ui/css/sunny/images/animated-overlay.gif[ADD],
web/jquery/ui/css/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png,
web/jquery/ui/css/sunny/images/ui-bg_flat_30_cccccc_40x100.png,
web/jquery/ui/css/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png,
web/jquery/ui/css/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png,
web/jquery/ui/css/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png,
web/jquery/ui/css/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png,
web/jquery/ui/css/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png,
web/jquery/ui/css/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png,
web/jquery/ui/css/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png,
web/jquery/ui/css/sunny/images/ui-icons_3d3d3d_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_bd7b00_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_d19405_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_eb990f_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_ed9f26_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_fadc7a_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_ffe180_256x240.png,
web/jquery/ui/css/sunny/jquery-ui-1.10.4.custom.min.css[ADD],
web/jquery/ui/css/sunny/jquery-ui-1.9.1.custom.min.css[DEL],
web/jquery/ui/jquery-ui-1.10.4.custom.min.js[ADD],
web/jquery/ui/jquery-ui-1.9.1.custom.min.js[DEL],
web/jquery/ui/jquery-ui-i18n.js, web/js.inc, web/style.inc:
Upgraded to jQuery UI Release 1.10.4
2014-02-08 10:58 Campbell Morrison <[email protected]>
* [r2810] web/jquery/jquery-2.1.0.min.js[ADD], web/js.inc:
Upgraded to jQuery 2.1.0, with a fallback to 1.11.0 for IE8 and
below
2014-02-08 10:28 Campbell Morrison <[email protected]>
* [r2809] web/internalconfig.inc.php,
web/jquery/jquery-1.11.0.min.js[ADD],
web/jquery/jquery-1.8.2.min.js[DEL],
web/jquery/jquery-migrate-1.2.1.js[ADD],
web/jquery/jquery-migrate-1.2.1.min.js[ADD], web/js.inc:
Upgraded to jQuery 1.11.0, fixing SF Bugs #293 in the process
2014-01-29 14:47 Campbell Morrison <[email protected]>
* [r2808] web/grab_globals.inc.php:
Simplified code
2014-01-29 09:06 Campbell Morrison <[email protected]>
* [r2807] web/lang/lang.id[ADD], web/language.inc:
Added Bahasa Indonesian translation. Thanks to Gibransyah Fakhri.
See SF Patches #44.
2014-01-29 08:49 Campbell Morrison <[email protected]>
* [r2806] web/systemdefaults.inc.php:
Updated comment on changing type colours
2014-01-24 20:05 Campbell Morrison <[email protected]>
* [r2805] web/internalconfig.inc.php:
Added missing commas. See SF Bugs #292
2014-01-20 20:59 Campbell Morrison <[email protected]>
* [r2804] web/js/datepicker.js.php:
Allowed datepickers to be edited manually. See SF Bugs #291
2014-01-17 14:25 Campbell Morrison <[email protected]>
* [r2803] tables.my.pre41.sql, tables.my.sql, tables.pg.pre73.sql,
tables.pg.sql, web/dbsys.inc, web/edit_entry_handler.php,
web/functions_view.inc, web/internalconfig.inc.php,
web/lang/lang.en, web/lang/lang.it, web/mrbs_sql.inc,
web/upgrade/36[ADD], web/upgrade/36/mysql.sql[ADD],
web/upgrade/36/pgsql.sql[ADD]:
Added 'modified_by' field so you can see who last modified an
entry
2014-01-15 21:29 Campbell Morrison <[email protected]>
* [r2802] web/upgrade.inc:
Fixed upgrade.inc to work with multiple schemas
2014-01-15 20:50 Campbell Morrison <[email protected]>
* [r2801] web/pgsql.inc:
Fixed sql_pgsql_table_exists() when used with a database
containing multiple schemas.
2014-01-09 15:24 Campbell Morrison <[email protected]>
* [r2800] web/dbsys.inc:
Minor improvement on previous change. Qualified table names are
now formed for all databases other than MySQL, rather than just
for PostgreSQL. As most databases other than MySQL seem to
support schemas this will mean that should support for other
databases be added in the future the code is more likely to work.
2014-01-09 12:44 Campbell Morrison <[email protected]>
* [r2799] web/config.inc.php, web/dbsys.inc, web/pgsql.inc,
web/systemdefaults.inc.php:
Added the ability to specify a schema as a database config
variable and thus the ability for MRBS to work with databases
containing multiple schemas (only applicable to PostgreSQL). See
SF Support Requests #431.
2013-12-13 13:52 Campbell Morrison <[email protected]>
* [r2798] web/approve_entry_handler.php:
Fixed a bug whereby the room id wasn't being passed through to
approve_entry_handler.php. The bug doesn't manifest itself in
standard MRBS but does if you're extending auth_book_admin() to
make use of the room parameter.
2013-12-10 10:40 Campbell Morrison <[email protected]>
* [r2797] web/internalconfig.inc.php:
Fixed problem causing a warning about the timezone not having
been set. The problem only manifests itself if the timezone
hasn't been set by php.ini using date.timezone. Most php.ini
files do this, but some don't.
2013-11-28 09:47 Campbell Morrison <[email protected]>
* [r2796] web/systemdefaults.inc.php:
Replicated changes from Rev 2793 and 2794 to the systemdefaults
file and also extended to 'db_ext' settings
2013-11-28 09:20 Campbell Morrison <[email protected]>
* [r2795] web/config.inc.php:
Improved comments in the config file. See SF Support Requests
#423
2013-11-27 19:44 John Beranek <[email protected]>
* [r2794] web/config.inc.php:
Clarified $db_host setting when used with mysql/mysqli.
2013-11-27 19:34 John Beranek <[email protected]>
* [r2793] web/config.inc.php:
Added an example of setting $db_port into config.inc.php.
2013-11-27 09:46 Campbell Morrison <[email protected]>
* [r2792] web/systemdefaults.inc.php:
Corrected error in comment
2013-11-27 09:35 Campbell Morrison <[email protected]>
* [r2791] web/lang/lang.en, web/mrbs_sql.inc,
web/systemdefaults.inc.php:
Implemented an earliest booking date using absolute dates,
controlled by the new config variables $min_booking_date_enabled
and $min_booking_date
2013-11-26 09:25 Campbell Morrison <[email protected]>
* [r2790] web/month.php:
Removed redundant code
2013-11-26 09:24 Campbell Morrison <[email protected]>
* [r2789] web/functions_table.inc:
Improved error reporting in the week view when there are no rooms
2013-11-25 20:36 John Beranek <[email protected]>
* [r2788] convert_db_to_utf8.php:
Added passing of $db_port to sql_connect() call in
convert_db_to_utf8. See [support-requests:#365].
2013-11-25 20:32 John Beranek <[email protected]>
* [r2787] web/dbsys.inc:
Make sql_connect() take an optional port parameter.
2013-11-25 18:30 Campbell Morrison <[email protected]>
* [r2786] web/dbsys.inc:
Fixed bug where $db_port was being ignored in the upgrade
process. See SF Support Requests #365
2013-11-21 11:23 Campbell Morrison <[email protected]>
* [r2785] web/css/mrbs.css.php:
Fixed problem with alignment of room and area selects in the week
and month views. Thanks to William Haller.
2013-11-21 10:48 Campbell Morrison <[email protected]>
* [r2784] convert_db_to_utf8.php, testdata.php, web/Blowfish.php,
web/Blowfish/DefaultKey.php, web/File/Passwd.php,
web/File/Passwd/Authbasic.php, web/File/Passwd/Authdigest.php,
web/File/Passwd/Common.php, web/File/Passwd/Custom.php,
web/File/Passwd/Cvs.php, web/File/Passwd/Smb.php,
web/File/Passwd/Unix.php, web/PEAR.php,
web/Themes/classic126/styling.inc, web/Themes/default/header.inc,
web/Themes/default/styling.inc, web/add.php, web/admin.php,
web/approve_entry_handler.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_db_ext.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/config.inc.php, web/day.php, 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/escapeshellarg.inc, web/functions.inc,
web/functions_ical.inc, web/functions_mail.inc,
web/functions_view.inc, web/grab_globals.inc.php, web/help.php,
web/import.php, web/index.php, web/internalconfig.inc.php,
web/js/refresh.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.he,
web/lang/lang.hu, web/lang/lang.it, web/lang/lang.ja,
web/lang/lang.ko, web/lang/lang.nl, web/lang/lang.no,
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-cn,
web/lang/lang.zh-tw, web/language.inc, web/mincals.inc,
web/month.php, web/mrbs_auth.inc, web/mrbs_sql.inc,
web/mysql.inc, web/mysqli.inc, web/pending.php, web/pgsql.inc,
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/standard_vars.inc.php, web/style.inc,
web/systemdefaults.inc.php, web/theme.inc, web/trailer.inc,
web/upgrade.inc, web/upgrade/13/post.inc,
web/upgrade/15/post.inc, web/upgrade/16/post.inc,
web/upgrade/17/post.inc, web/upgrade/2/post.inc,
web/upgrade/21/post.inc, web/upgrade/24/post.inc,
web/upgrade/32/post.inc, web/upgrade/34/post.inc,
web/upgrade/4/post.inc, web/upgrade/5/post.inc,
web/upgrade/6/post.inc, web/upgrade/7/post.inc,
web/upgrade/8/post.inc, web/version.inc, web/view_entry.php,
web/week.php:
Removed closing PHP tags (?>) at the ends of files as they are
unnecessary and can cause problems with unexpected output (eg see
SF Bugs #288)
2013-11-20 12:06 Campbell Morrison <[email protected]>
* [r2783] web/report.php:
Prevented output of headers when running reports in CLI mode.
Thanks to William Haller.
2013-11-14 11:23 Campbell Morrison <[email protected]>
* [r2781] web/site_faq/site_faq_cs.html[ADD]:
Added Czech help file. Thanks to tachec. See
https://sourceforge.net/p/mrbs/patches/43/.
2013-11-13 10:13 Campbell Morrison <[email protected]>
* [r2780] web/lang/lang.cs:
Updated Czech translation. See
https://sourceforge.net/p/mrbs/patches/42/
2013-11-07 15:20 Campbell Morrison <[email protected]>
* [r2779] web/auth/auth_db_ext.inc, web/systemdefaults.inc.php:
Allowed use of non-standard port numbers when using 'db_ext'
authentication
2013-11-07 15:09 Campbell Morrison <[email protected]>
* [r2778] web/mysqli.inc:
Removed debugging info when using $db_port with mysqli
2013-11-07 15:02 Campbell Morrison <[email protected]>
* [r2777] web/mysql.inc:
Fixed bug when using $db_port with mysql
2013-11-07 14:46 Campbell Morrison <[email protected]>
* [r2776] web/dbsys.inc, web/mysql.inc, web/mysqli.inc,
web/pgsql.inc:
Tidied up quoting of identifiers
2013-11-07 14:32 Campbell Morrison <[email protected]>
* [r2775] web/auth/auth_db_ext.inc:
Added quoting of table and column names when using 'db_ext'
authentication
2013-11-07 14:25 Campbell Morrison <[email protected]>
* [r2774] web/auth/auth_db_ext.inc:
Improved error reporting when using 'db_ext' authentication
2013-11-07 13:52 Campbell Morrison <[email protected]>
* [r2773] web/auth/auth_db_ext.inc, web/systemdefaults.inc.php:
Changed default database system for 'db_ext' authentication from
mysql to mysqli (mysql is deprecated from PHP 5.5)
2013-10-18 15:59 Campbell Morrison <[email protected]>
* [r2772] web/edit_users.php:
Fixed checking of password length when using multibyte characters
2013-10-18 15:53 Campbell Morrison <[email protected]>
* [r2771] web/mrbs_sql.inc:
Fixed truncation of room and area names when using multi-byte
characters
2013-10-18 15:49 Campbell Morrison <[email protected]>
* [r2770] web/admin.php:
Fixed truncation of multi-byte characters on the admin page
2013-10-18 15:38 Campbell Morrison <[email protected]>
* [r2769] web/edit_users.php:
Fixed truncation of maxlength fields on the Add user form to
cater for multi-byte characters
2013-10-18 15:35 Campbell Morrison <[email protected]>
* [r2768] web/edit_entry.php, web/functions.inc:
Added the ability to set a maxlength on textareas, including the
Description field on the edit_entry form.
2013-10-18 15:20 Campbell Morrison <[email protected]>
* [r2767] web/edit_entry_handler.php:
Added comment
2013-10-18 15:09 Campbell Morrison <[email protected]>
* [r2766] web/edit_entry.php, web/edit_entry_handler.php,
web/systemdefaults.inc.php:
Added the ability to set a maxlength attribute for custom fields
on the edit_entry page (see SF Feature Requests #230). At the
same time fixed handling of maxlength fields on the edit_entry
page for multi-byte characters.
2013-10-16 21:02 Campbell Morrison <[email protected]>
* [r2765] web/systemdefaults.inc.php:
Added some comments about the use of associative arrays for
$select_options (see SF Bugs 282)
2013-10-02 20:15 John Beranek <[email protected]>
* [r2764] web/mysql.inc, web/mysqli.inc, web/pgsql.inc,
web/systemdefaults.inc.php:
Added ability to specify the config variable $db_port, see
[support-requests:#365].
2013-09-30 09:57 Campbell Morrison <[email protected]>
* [r2763] web/functions_ical.inc:
Fixed bug when exporting an individual entry of a series. Thanks
to Quique. See SF Patches #41
2013-09-21 13:37 Campbell Morrison <[email protected]>
* [r2762] web/report.php:
Fixed bug when exporting monthly repeats in ical format (see SF
bugs #281)
2013-09-13 13:21 Campbell Morrison <[email protected]>
* [r2761] web/view_entry.php:
Removed redundant code
2013-09-13 13:12 Campbell Morrison <[email protected]>
* [r2760] web/view_entry.php:
Fixed bug causing the approval buttons not to be displayed on the
view_entry page in some circumstances (see SF Support Requests
#356)
2013-09-12 14:22 Campbell Morrison <[email protected]>
* [r2759] web/lang/lang.fr:
Added to French translation (see SF Patches #40)
2013-09-11 19:57 Campbell Morrison <[email protected]>
* [r2758] web/edit_area_room.php:
Fixed bug whereby custom HTML for a room was not being saved (see
SF Support requests #384)
2013-09-06 08:17 Campbell Morrison <[email protected]>
* [r2757] web/style.inc:
Fixed last change to allow remote URLs (see SF Support Requests
#381)
2013-09-05 13:41 Campbell Morrison <[email protected]>
* [r2756] web/css/mrbs.css.php:
Replaced tab with spaces
2013-09-05 13:09 Campbell Morrison <[email protected]>
* [r2755] web/style.inc, web/systemdefaults.inc.php:
Added ability to use custom CSS files. See SF Support requests
#381.
2013-08-22 15:11 Campbell Morrison <[email protected]>
* [r2754] web/lang/lang.nl:
Corrected confusing Dutch translation for "Repeat every". See SF
Bugs 279
2013-08-21 08:54 Campbell Morrison <[email protected]>
* [r2753] web/js/edit_entry.js.php:
Fixed problem with use of indexOf() mdethod on arrays, which is
not supported by IE8 and below. See SF Bugs #280.
2013-08-07 08:07 Campbell Morrison <[email protected]>
* [r2752] web/language.inc:
Removed another undefined index problem
2013-08-07 08:00 Campbell Morrison <[email protected]>
* [r2751] web/language.inc:
Removed an undefined index problem
2013-08-06 17:52 Campbell Morrison <[email protected]>
* [r2750] web/language.inc:
Added support for Estonian in Windows
2013-08-06 17:31 Campbell Morrison <[email protected]>
* [r2749] web/language.inc:
Added an Estonian locale mapping for Unix. See SF Bugs #277
2013-07-22 12:21 Campbell Morrison <[email protected]>
* [r2746] web/internalconfig.inc.php:
Fixed problem with Strict error messages being generated when
mail messages are sent using PHP versions < 5.4. See SF Support
Requests #367
2013-07-21 18:55 Campbell Morrison <[email protected]>
* [r2745] web/js.inc:
Replaced use of deprecated jQuery .load() method
2013-07-21 18:47 Campbell Morrison <[email protected]>
* [r2744] web/js/resizable.js.php:
Replaced use of deprecated jQuery .andSelf() method
2013-07-21 18:28 Campbell Morrison <[email protected]>
* [r2743] web/js/pending.js.php:
Replaced use of deprecated jQuery .live() method
2013-07-21 10:58 Campbell Morrison <[email protected]>
* [r2742] web/day.php, web/edit_entry_handler.php,
web/js/edit_entry.js.php, web/js/general.js.php,
web/js/refresh.js.php, web/mrbs_auth.inc,
web/record_activity_ajax.php[ADD], web/session/session_php.inc,
web/systemdefaults.inc.php, web/week.php:
Implemented an inactivity time out that will log users out after
a period of inactivity, set by the config variable
$auth["session_php"]["inactivity_expire_time"]. Only implemented
for the 'php' session scheme
2013-07-16 09:27 Campbell Morrison <[email protected]>
* [r2741] web/mrbs_sql.inc:
Fixed undefined variable problem
2013-07-08 20:29 John Beranek <[email protected]>
* [r2740] web/version.inc:
Updated version number post-release.
2013-07-08 20:26 John Beranek <[email protected]>
* [r2737] web/version.inc:
Updated version number for release.
2013-07-08 20:13 John Beranek <[email protected]>
* [r2735] ChangeLog, NEWS:
Updated NEWS and ChangeLog for release
2013-06-10 16:47 Campbell Morrison <[email protected]>
* [r2733] web/dbsys.inc, web/edit_area_room.php,
web/edit_users.php, web/mrbs_sql.inc, web/mysql.inc,
web/mysqli.inc, web/pgsql.inc:
Fixed bug when using an SQL reserved word as a custom field name
2013-05-23 09:07 Campbell Morrison <[email protected]>
* [r2732] web/internalconfig.inc.php:
Disabled E_STRICT errors (see SF Bugs #272)
2013-05-20 13:27 Campbell Morrison <[email protected]>
* [r2731] web/functions_mail.inc:
Fixed bug causing error messages when there are no mail
recipients. Thanks to Tuomas. See SF Patches #37
2013-05-20 12:41 Campbell Morrison <[email protected]>
* [r2730] web/lang/lang.fi:
Updated Finnish translation. Thanks to Tuomas. See SF Patches #38
2013-03-14 09:38 Campbell Morrison <[email protected]>
* [r2724] web/mrbs_sql.inc:
Fixed bug when approving bookings and using PostgreSQL (removed
LIMIT clauses from UPDATE statements as they are not supported by
PostgreSQL)
2013-03-12 16:36 Campbell Morrison <[email protected]>
* [r2721] web/functions_ical.inc, web/mrbs_sql.inc,
web/view_entry.php:
Made Export Series work with monthly repeats (it got broken when
the new monthly repeat types were introduced)
2013-03-11 14:15 Campbell Morrison <[email protected]>
* [r2717] web/systemdefaults.inc.php:
Fixed typo in comment
2013-03-10 18:04 Campbell Morrison <[email protected]>
* [r2716] web/js/refresh.js.php, web/js/resizable.js.php:
Fixed bug causing the "Goto" datepicker to be reset if it was
open at the time the booking table was refreshed.
2013-03-07 16:35 Campbell Morrison <[email protected]>
* [r2713] web/site_faq/site_faq_sv.html[ADD]:
Added a Swedish site_faq. Thanks to Anders Henhammar.
2013-03-07 16:29 Campbell Morrison <[email protected]>
* [r2712] web/help.php, web/site_faq[ADD], web/site_faq.html[DEL],
web/site_faq/site_faq.html[CPY],
web/site_faq/site_faq_de.html[CPY],
web/site_faq/site_faq_es.html[CPY],
web/site_faq/site_faq_fr.html[CPY],
web/site_faq/site_faq_it.html[CPY],
web/site_faq/site_faq_nl.html[CPY], web/site_faq_de.html[DEL],
web/site_faq_es.html[DEL], web/site_faq_fr.html[DEL],
web/site_faq_it.html[DEL], web/site_faq_nl.html[DEL]:
Moved the site_faq files into their own directory
2013-03-07 16:13 Campbell Morrison <[email protected]>
* [r2711] web/lang/lang.sv:
Updated Swedish translation. Thanks to Anders Henhammar.
2013-02-20 14:55 Campbell Morrison <[email protected]>
* [r2706] web/view_entry.php:
Fixed incorrect quoting of id column, resulting in error messages
when running under PostgreSQL. See SF bugs #266
2013-02-15 19:04 Campbell Morrison <[email protected]>
* [r2703] web/js/edit_entry.js.php:
Fixed bug resulting in no end time options being offered if there
is only one enabled area.
2013-02-15 17:01 Campbell Morrison <[email protected]>
* [r2702] web/edit_area_room.php, web/edit_entry.php,
web/edit_entry_handler.php, web/functions.inc,
web/functions_table.inc, web/internalconfig.inc.php,
web/js/edit_area_room.js.php, web/js/edit_entry.js.php,
web/mincals.inc, web/mrbs_sql.inc, web/report.php:
Introduced constants for SECONDS_PER_DAY etc.
2013-02-15 14:41 Campbell Morrison <[email protected]>
* [r2701] web/edit_entry.php, web/edit_entry_handler.php,
web/functions.inc, web/functions_table.inc:
Fixed various issues with booking days spanning midnight,
including a problem with checking the All Day checkbox (see SF
Bugs #236 part (3))
2013-02-15 13:02 Campbell Morrison <[email protected]>
* [r2700] web/report.php:
Fixed some label problems on the report page. See SF Bugs #265
2013-02-15 09:04 Campbell Morrison <[email protected]>
* [r2699] web/js/edit_entry.js.php:
Fixed bug causing slots to be described as "n days, 24 hours"
instead of "n+1 days". See SF bugs #236 part (1).
2013-02-15 08:31 Campbell Morrison <[email protected]>
* [r2698] web/js/edit_entry.js.php:
Fixed bug causing slots to be reported as 'n days, 0 minutes'
instead of 'n days'
2013-02-14 11:28 Campbell Morrison <[email protected]>
* [r2697] web/functions.inc:
Fixed typo in comment
2013-02-14 11:23 Campbell Morrison <[email protected]>
* [r2696] web/edit_area_room.php:
Fixed last change properly
2013-02-14 10:51 Campbell Morrison <[email protected]>
* [r2695] web/edit_area_room.php, web/internalconfig.inc.php:
Fixed bug causing incorrect checking of resolution and number of
slots when the booking day stretches past midnight.
2013-02-11 08:51 Campbell Morrison <[email protected]>
* [r2694] web/js/resizable.js.php:
Made sure that page refresh isn't restarted while we are in the
middle of a drag selection when we pass over the handles for
resizable bookings
2013-02-11 07:30 Campbell Morrison <[email protected]>
* [r2693] web/js/resizable.js.php:
Improved performance of drag selection, especially with large
tables
2013-02-10 19:06 Campbell Morrison <[email protected]>
* [r2692] web/js/refresh.js.php:
Restructured code
2013-02-10 18:44 Campbell Morrison <[email protected]>
* [r2691] web/js/refresh.js.php, web/js/resizable.js.php:
Prevented page refresh when the mouse is hovering over a resize
handler (ie the user is about to start a resize)
2013-02-10 13:30 Campbell Morrison <[email protected]>
* [r2690] web/js/refresh.js.php:
Fixed a bug causing multiple timers to be fired when the page is
hidden and then unhidden
2013-02-10 12:33 Campbell Morrison <[email protected]>
* [r2689] web/js/refresh.js.php, web/js/resizable.js.php:
Fixed bug causing interval timer to stop occasionally
2013-02-10 11:37 Campbell Morrison <[email protected]>
* [r2688] web/js.inc, web/js/refresh.js.php,
web/js/resizable.js.php:
Disabled page refreshing while resizing is in progress
2013-02-09 07:18 Campbell Morrison <[email protected]>
* [r2687] web/js/datepicker.js.php:
Fixed bug causing clicking outside the datepicker to result in
date selection, rather than cancelling the datepicker. See SF
Bugs #263
2013-02-08 15:04 Campbell Morrison <[email protected]>
* [r2686] web/js/resizable.js.php:
Fixed bug introduced in Rev 2671 preventing resizing of bookings
in the week view. See SF bugs #262
2013-02-05 16:40 Campbell Morrison <[email protected]>
* [r2684] web/lang/lang.it:
Updated Italian translation. Provided by Diego Zuccato
2013-02-05 16:39 Campbell Morrison <[email protected]>
* [r2683] web/lang/lang.en:
Tweaked formatting
2013-02-05 15:45 Campbell Morrison <[email protected]>
* [r2682] web/del_entry_ajax.php, web/mrbs_sql.inc:
Fixed bug whereby the repeat entry row is not deleted if you do a
bulk delete from the Report page of all the entries in a series
(see SF bugs #260)