forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
12256 lines (7103 loc) · 291 KB
/
CHANGES
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
CHANGES
=======
This file contains all the raw change logs since the last major
release, so that you can see exactly what changes have been made.
A more user-friendly version of this is in doc/release.html
---------------------------------------------------------------
2004-01-31 Saturday 01:00 moodler
* lang/en/docs/future.html:
Updated because of slippage
2004-01-31 Saturday 00:49 koenr
* lang/nl/moodle.php:
translating on moodle-speed ;-)
2004-01-31 Saturday 00:43 moodler
* version.php:
Bump
2004-01-31 Saturday 00:42 moodler
* lang/en/moodle.php:
New string 'clicktochange'
2004-01-31 Saturday 00:40 moodler
* course/: lib.php, mod.php, format/social/format.php,
format/topics/format.php, format/weeks/format.php:
Improvements to groups.
- you can now actually turn group modes on and off for each
activity. :-)
"Turn Editing On" to see the new icons.
- Link to Groups page is now smarter about when it does and
doesn't appear
2004-01-31 Saturday 00:37 koenr
* lang/nl/: error.php, error.php:
missing strings
2004-01-31 Saturday 00:36 moodler
* pix/t/groups.gif:
Slightly improved icon
2004-01-30 Friday 23:44 moodler
* pix/t/: groupn.gif, groups.gif, groupv.gif:
New draft icons for defining groups per activity
2004-01-30 Friday 21:55 moodler
* mod/journal/report.php:
Fixed some hard-coded strings
http://moodle.org/bugs/bug.php?op=show&bugid=1011
2004-01-30 Friday 20:27 moodler
* lang/en/error.php:
Missing string
2004-01-30 Friday 20:08 moodler
* user/index.php:
When separate groups are being used, only show teachers and
students who have access to that group
2004-01-30 Friday 20:03 moodler
* lib/datalib.php:
Putting in a placeholder when counting or gettig users in group 0
(return nothing for now)
2004-01-30 Friday 19:30 moodler
* lib/datalib.php:
get_course_students can now look for groups as well (doesn't handle
group 0 yet)
get_course_users is more robust (fixes the journal report problem
etc)
2004-01-30 Friday 15:50 koenr
* lang/nl/: error.php, forum.php, moodle.php:
missing strings
2004-01-30 Friday 15:15 stronk7
* mod/forum/db/oci8po.sql:
Some strange line feeds in the latest version. Solved.
2004-01-30 Friday 13:44 gustav_delius
* mod/forum/db/oci8po.sql:
increase mailed to number(2)
2004-01-30 Friday 13:40 gustav_delius
* lib/db/mysql.php, lib/db/postgres7.php, mod/forum/version.php,
mod/forum/db/mysql.php, mod/forum/db/mysql.sql:
moved the database update code to where it belongs
2004-01-30 Friday 13:16 stronk7
* lang/en/moodle.php:
Added str. creatinggroups
2004-01-30 Friday 11:04 stronk7
* backup/: backuplib.php, lib.php:
Now everything seems to work fine with the new insert_record()
function.
Please, test :-)
2004-01-30 Friday 10:21 gustav_delius
* lib/datalib.php, lib/db/mysql.php, lib/db/postgres7.php,
version.php, mod/forum/lib.php:
better logging of forum mail errors, see
http://moodle.org/mod/forum/discuss.php?d=4865. Required the
addition of an extra optional argument $user="" to add_to_log()
2004-01-30 Friday 08:53 moodler
* mod/assignment/: index.php, lib.php, view.php:
Fixed the counting of submissions for a new function
assignment_count_real_submissions()
2004-01-30 Friday 07:22 moodler
* mod/quiz/report/overview/report.php:
OK, much better. What was I thinking. :-)
2004-01-30 Friday 07:16 moodler
* mod/quiz/report/overview/report.php:
On second thoughts, added hours
2004-01-30 Friday 07:16 moodler
* mod/quiz/report/overview/report.php:
Fixed date format
2004-01-30 Friday 06:50 gustav_delius
* config-dist.php:
got rid of bad line endings
2004-01-30 Friday 01:55 moodler
* lib/moodlelib.php, lang/en/error.php:
Error message for restricted users
2004-01-30 Friday 01:04 moodler
* lib/datalib.php:
New paratmeter to insert_record called primarykey (defaults to
"id") and removed insert_record_old
2004-01-30 Friday 00:50 moodler
* filter/texh/texh.php:
Whoops ... forgot to check this in
2004-01-30 Friday 00:45 moodler
* mod/forum/view.php:
Fix the mode handling for "single" forums
2004-01-30 Friday 00:31 moodler
* login/change_password.php:
Check for restricted users and also removed some tabs
2004-01-30 Friday 00:29 moodler
* user/edit.php:
Restrict certain users from changing profile
2004-01-30 Friday 00:25 moodler
* lib/moodlelib.php:
New function to restrict defined users
2004-01-29 Thursday 23:45 paca70
* lib/datalib.php:
My php 4.3.4/postgres7.4 combination was thinking that returned
id-column was string and some modules were thingking that theres
insert error if return value is string. Right now all id-colums is
always integer so this should be ok.
2004-01-29 Thursday 23:43 bobopinna
* lang/it/moodle.php:
Updated by Roberto -Bobo- Pinna
2004-01-29 Thursday 23:36 bobopinna
* lang/it/moodle.php:
Updated by Roberto -Bobo- Pinna
2004-01-29 Thursday 23:29 moodler
* mod/glossary/showentry.php:
No functional change, just me moodling
2004-01-29 Thursday 23:26 moodler
* course/groups.php:
Use natural sorting on lists
2004-01-29 Thursday 22:44 moodler
* lib/moodlelib.php:
When unenrolling students, remove them from groups too
2004-01-29 Thursday 21:59 moodler
* lib/moodlelib.php:
When adding a teacher, remove them as a student.
2004-01-29 Thursday 20:02 moodler
* mod/journal/report.php:
Simplified logic a bit
2004-01-29 Thursday 20:01 moodler
* mod/journal/lib.php:
Fixed typo bug when getting users
2004-01-29 Thursday 19:11 moodler
* lib/adodb/: adodb-csvlib.inc.php, adodb-datadict.inc.php,
adodb-error.inc.php, adodb-errorhandler.inc.php,
adodb-errorpear.inc.php, adodb-exceptions.inc.php,
adodb-iterator.inc.php, adodb-lib.inc.php, adodb-pager.inc.php,
adodb-pear.inc.php, adodb-perf.inc.php, adodb-php4.inc.php,
adodb-time.inc.php, adodb-xmlschema.inc.php, adodb.inc.php,
docs-adodb.htm, docs-datadict.htm, docs-perf.htm, docs-session.htm,
license.txt, pivottable.inc.php, rsfilter.inc.php, server.php,
tips_portable_sql.htm, toexport.inc.php, tohtml.inc.php, tute.htm,
datadict/datadict-access.inc.php, datadict/datadict-db2.inc.php,
datadict/datadict-generic.inc.php, datadict/datadict-ibase.inc.php,
datadict/datadict-informix.inc.php,
datadict/datadict-mssql.inc.php, datadict/datadict-mysql.inc.php,
datadict/datadict-oci8.inc.php, datadict/datadict-postgres.inc.php,
datadict/datadict-sybase.inc.php, drivers/adodb-access.inc.php,
drivers/adodb-ado.inc.php, drivers/adodb-ado_access.inc.php,
drivers/adodb-ado_mssql.inc.php,
drivers/adodb-borland_ibase.inc.php, drivers/adodb-csv.inc.php,
drivers/adodb-db2.inc.php, drivers/adodb-fbsql.inc.php,
drivers/adodb-firebird.inc.php, drivers/adodb-ibase.inc.php,
drivers/adodb-informix.inc.php, drivers/adodb-informix72.inc.php,
drivers/adodb-mssql.inc.php, drivers/adodb-mssqlpo.inc.php,
drivers/adodb-mysql.inc.php, drivers/adodb-mysqli.inc.php,
drivers/adodb-mysqlt.inc.php, drivers/adodb-oci8.inc.php,
drivers/adodb-oci805.inc.php, drivers/adodb-oci8po.inc.php,
drivers/adodb-odbc.inc.php, drivers/adodb-odbc_mssql.inc.php,
drivers/adodb-odbc_oracle.inc.php, drivers/adodb-oracle.inc.php,
drivers/adodb-postgres.inc.php, drivers/adodb-postgres64.inc.php,
drivers/adodb-postgres7.inc.php, drivers/adodb-proxy.inc.php,
drivers/adodb-sapdb.inc.php, drivers/adodb-sqlanywhere.inc.php,
drivers/adodb-sqlite.inc.php, drivers/adodb-sybase.inc.php,
drivers/adodb-vfp.inc.php, lang/adodb-ca.inc.php,
lang/adodb-cn.inc.php, lang/adodb-de.inc.php,
lang/adodb-fr.inc.php, lang/adodb-it.inc.php,
perf/perf-db2.inc.php, perf/perf-informix.inc.php,
perf/perf-mssql.inc.php, perf/perf-mysql.inc.php,
perf/perf-oci8.inc.php, perf/perf-postgres.inc.php,
session/adodb-compress-bzip2.php, session/adodb-compress-gzip.php,
session/adodb-cryptsession.php, session/adodb-encrypt-mcrypt.php,
session/adodb-encrypt-md5.php, session/adodb-encrypt-secret.php,
session/adodb-sess.txt, session/adodb-session-clob.php,
session/adodb-session.php, session/adodb-sessions.mysql.sql,
session/adodb-sessions.oracle.clob.sql,
session/adodb-sessions.oracle.sql, session/crypt.inc.php,
tests/benchmark.php, tests/client.php, tests/test-datadict.php,
tests/test-pgblob.php, tests/test-php5.php,
tests/test-xmlschema.php, tests/test.php, tests/test2.php,
tests/test3.php, tests/test4.php, tests/test5.php,
tests/test_rs_array.php, tests/testcache.php,
tests/testdatabases.inc.php, tests/testgenid.php,
tests/testmssql.php, tests/testoci8.php, tests/testoci8cursor.php,
tests/testpaging.php, tests/testpear.php, tests/testsessions.php,
tests/tmssql.php:
Upgrading ADOdb to 4.11 ... there were lots of little bug fixes
2004-01-29 Thursday 18:25 moodler
* lib/datalib.php:
Fixed problem with magic quotes
2004-01-29 Thursday 17:57 moodler
* mod/journal/lib.php:
Don't always use arraymerge in journal_get_users_done() - was
causing bad data sometimes ...
2004-01-29 Thursday 07:27 moodler
* lib/datalib.php:
IMPORTANT! CRUCIAL CHANGE TO MAJOR FUNCTION!
Petri Asikainen rewrote insert_record to use ADOdb functions. It
might be very slightly slower but it gets rid of all the horrible
not-quite-working PostgreSQL workarounds the old one contained.
It worked for him on PostgreSQL 7.4 and for me on MySQL 3.23 and
4.0.15, so I'm checking it in.
Please test it thoroughly on your test systems.
Since it writes data it has the potential to stuff things up, so be
careful on production systems for a few days.
2004-01-29 Thursday 07:13 bobopinna
* lang/it/docs/teacher.html:
Updated by Roberto -Bobo- Pinna
2004-01-29 Thursday 06:27 bobopinna
* lang/it/help/: coursecategory.html, courseformats.html,
coursefullname.html, coursenumsections.html, courserecent.html,
courseshortname.html, coursestartdate.html, enrolmentkey.html,
guestaccess.html, html.html, langedit.html, choice/options.html:
New version from Giorgio Borelli
2004-01-28 Wednesday 21:59 moodler
* mod/forum/index.php:
Dont print learning forums table if there aren't any
2004-01-28 Wednesday 20:58 moodler
* mod/forum/index.php:
Reduce intro text for general forums
2004-01-28 Wednesday 20:13 moodler
* version.php, lib/db/mysql.php, lib/db/mysql.sql,
lib/db/postgres7.php, lib/db/postgres7.sql:
Change type of config->value to text (to allow longer info)
2004-01-28 Wednesday 16:14 stronk7
* backup/version.php:
- some debug info turned off. - scheduled backups now supports
groups info (need to centralize the code!!) - solved an important
issue when restoring users introduced in lib.php v1.44
Bump
2004-01-28 Wednesday 16:12 stronk7
* backup/lib.php:
Solved one important issue when restoring users due to a bug in
revision 1.44, when solving bug 946. Tons of thanks to Jacob Romeyn
detecting it.
2004-01-28 Wednesday 16:08 stronk7
* backup/restorelib.php:
Turn off some debug info.
2004-01-28 Wednesday 16:07 stronk7
* backup/backup_scheduled.php:
Now groups are included in scheduled backups. I think that we
should use the same exact code in backup_execute.php and
backup_scheduled.php to avoid duplicating it in two files !!
2004-01-28 Wednesday 08:46 moodler
* tags:
Latest tags
2004-01-28 Wednesday 06:49 moodler
* mod/forum/: lib.php, version.php:
Removed function, and updated versions
2004-01-28 Wednesday 06:48 moodler
* mod/forum/discuss.php:
Yes, finally forum display preferences are preserved. :-)
2004-01-28 Wednesday 06:47 moodler
* lib/moodlelib.php:
Bugfixes to set_user_preference
2004-01-28 Wednesday 06:14 moodler
* version.php, lib/datalib.php, lib/moodlelib.php,
lib/db/mysql.php, lib/db/mysql.sql, lib/db/postgres7.php,
lib/db/postgres7.sql:
Added new table called "user preferences" which can be used for
storing arbitrary preferences for each user.
Thanks to Jon Papaioannou for the first draft of this code which I
modified.
2004-01-28 Wednesday 03:03 moodler
* mod/assignment/: index.php, view.php:
FIxed counting of submissions
2004-01-27 Tuesday 23:41 koenr
* lang/nl/resource.php:
missing strings
2004-01-27 Tuesday 23:41 koenr
* lang/nl/docs/install.html:
found some typo's
2004-01-27 Tuesday 20:42 moodler
* lib/weblib.php:
Added msup
2004-01-27 Tuesday 20:27 moodler
* mod/: assignment/version.php, attendance/version.php,
chat/version.php, choice/version.php, dialogue/version.php,
exercise/version.php, forum/version.php, glossary/version.php,
journal/version.php, label/version.php, quiz/version.php,
resource/version.php, survey/version.php, workshop/version.php:
Define minimum required versions of Moodle
2004-01-27 Tuesday 20:26 moodler
* admin/index.php:
Allow modules to define the version of Moodle they require, and
abort their installation if this requirement isn't met.
2004-01-27 Tuesday 15:48 stronk7
* course/grades.php:
Small typo preventing Excel Sheets to be named correctly.
2004-01-27 Tuesday 03:57 moodler
* backup/restorelib.php:
Fixed tiny bug for courses without groups
2004-01-26 Monday 19:43 moodler
* version.php:
Bumpy bump - time moving too fast
2004-01-26 Monday 19:30 moodler
* lib/weblib.php:
Allowing <algebra> tag
2004-01-26 Monday 15:23 stronk7
* backup/config.html, admin/backup.php:
Now the destination directory in scheduled bakups have some checks:
- Trailing slashes. - Trailing backslashes. - Exists.
2004-01-26 Monday 10:22 moodler
* theme/standard/styles.php:
Check $themename to prevent warnings at high levels of debugging
...
2004-01-26 Monday 09:46 moodler
* backup/backuplib.php:
FIxed tiniest bug when trying to backup groups in courses that have
none
2004-01-26 Monday 09:32 moodler
* lang/en/moodle.php:
Setting moodle.php back to default format (as created by
admin/lang.php)
2004-01-26 Monday 09:26 moodler
* lang/en/moodle.php:
Adding string for groups backup
2004-01-26 Monday 08:55 moodler
* config-dist.php:
Undoing some wacko formatting ... What were you trying to do,
Gustav?
2004-01-26 Monday 05:56 bobopinna
* lang/it/editor.php:
Updated by Roberto -Bobo- Pinna
2004-01-26 Monday 04:29 moodler
* mod/survey/index.php:
Added dividers
2004-01-26 Monday 04:27 moodler
* mod/: assignment/mod.html, chat/index.php, choice/index.php:
Added dividers and improved display of section
2004-01-26 Monday 04:21 moodler
* mod/glossary/index.php:
New dividers
2004-01-26 Monday 04:07 moodler
* mod/: assignment/index.php, quiz/index.php, resource/index.php:
Better dividers in the table
2004-01-26 Monday 03:51 moodler
* mod/resource/index.php:
Use dividers on the resource page
2004-01-26 Monday 03:47 moodler
* lib/weblib.php:
Better for CSS
2004-01-26 Monday 03:26 bobopinna
* lang/it/editor.php:
Updated by Roberto -Bobo- Pinna
2004-01-26 Monday 02:38 bobopinna
* lang/it/: appointment.php, auth.php, chat.php, dialogue.php,
error.php, event.php, forum.php, moodle.php, pix.php, quiz.php,
resource.php, docs/licence.html, docs/teacher.html:
Updated by Roberto -Bobo- Pinna
2004-01-26 Monday 02:14 moodler
* theme/: UPGRADE.txt, brightretro/styles.php,
cordoroyblue/styles.php, garden/styles.php, oceanblue/styles.php,
poweraid/config.php, poweraid/styles.php, standard/styles.php,
standardblue/styles.php, standardgreen/styles.php,
standardlogo/styles.php, standardred/styles.php,
standardwhite/styles.php:
New style for tabledivider, and some fixups
2004-01-26 Monday 01:54 moodler
* lib/weblib.php:
Er, much better wayto do dividiers
2004-01-26 Monday 01:48 moodler
* mod/forum/index.php:
MOds to use dividers between sections
2004-01-26 Monday 01:48 moodler
* lib/weblib.php:
Mod to print_table to allow dividers between rows (used on forum
listing)
2004-01-26 Monday 01:15 moodler
* lib/weblib.php:
Adding more tags for matsh
2004-01-26 Monday 01:13 moodler
* lib/datalib.php:
Get groupmode when returning a list of instances
2004-01-26 Monday 01:12 moodler
* lib/moodlelib.php:
Clarification to some group logic
2004-01-26 Monday 00:57 moodler
* mod/forum/index.php:
Remove the forum links as well (for group forums when user not in
group)
2004-01-26 Monday 00:05 moodler
* mod/forum/index.php:
Subscribe links accurately reflect what is possible according to
the user's group status.
Section numbers now printed once per section
2004-01-25 Sunday 20:34 moodler
* theme/standard/styles.php:
Put $themename back again
2004-01-25 Sunday 13:00 stronk7
* mod/forum/restorelib.php:
Now userid and groupid fields are recoded correctly in the restore
process. This should make the backup utility group-compliant !!
(when talking about forums, of course) :-)
2004-01-25 Sunday 12:57 stronk7
* backup/: STATUS.txt, restore_execute.html, restorelib.php,
version.php:
Now groups and members are restored and recoded when restoring
courses. Existing courses are searched by name+description to add
members to existing groups (when restoring over another course).
2004-01-25 Sunday 12:34 gustav_delius
* mod/: choice/mod.html, exercise/submissions.php, forum/lib.php,
forum/post.html, glossary/edit.html, glossary/formats.php,
glossary/import.html, glossary/lib.php, glossary/mod.html,
glossary/print.php, journal/lib.php, journal/view.php,
quiz/description.html, quiz/editmultianswer.php, quiz/lib.php,
quiz/match.html, quiz/multichoice.html, quiz/numerical.html,
quiz/randomsamatch.html, quiz/shortanswer.html,
quiz/truefalse.html, resource/details.php, resource/mod.html,
survey/details.php, survey/lib.php:
replaced incorrectly closed html tags, see bug 365
2004-01-25 Sunday 11:36 gustav_delius
* course/edit.html, lib/datalib.php, theme/standard/styles.php,
user/edit.html:
minor fixes, including bugs 997, 998
2004-01-25 Sunday 11:26 stronk7
* backup/: backup_execute.html, backuplib.php:
Groups are now included in backup too. I start working in restore
now.
2004-01-25 Sunday 11:04 gustav_delius
* config-dist.php, lang/en/moodle.php:
removed empty lines, which for example messed up the display of the
license terms
2004-01-25 Sunday 09:04 gustav_delius
* mod/forum/lib.php:
reset timelimit so that script does not get timed out when posting
to many users
2004-01-25 Sunday 09:02 gustav_delius
* theme/standard/footer.html:
added missing </center>
2004-01-25 Sunday 09:00 gustav_delius
* course/lib.php:
added alt text to some icons
2004-01-25 Sunday 08:49 gustav_delius
* course/: lib.php, info.php:
apply filter_text to course summary
2004-01-25 Sunday 06:51 moodler
* admin/cron.php:
Run cron.php as admin user so timezones etc work
2004-01-25 Sunday 05:50 moodler
* lang/de/editor.php:
Shorter string to help editor display
http://moodle.org/mod/forum/discuss.php?d=4791
2004-01-25 Sunday 01:37 moodler
* lib/setup.php:
If $CFG->opentogoogle is defined then
- google can get in as guest
- visitiors referred from google get in as guest
2004-01-25 Sunday 01:35 moodler
* lib/moodlelib.php:
New function guest_user to create a guest user record and return it
2004-01-24 Saturday 20:05 willcast
* mod/glossary/: dynalink.php, lib.php:
- Solving bug 995: Blank aliases caused the autolinking feature
to mess the whole thing...
2004-01-23 Friday 09:02 rkingdon
* mod/exercise/: backuplib.php, lib.php, upload.php:
Fixes to Backup and upload (now allows teachers multiple uploads in
a short period)
2004-01-23 Friday 05:23 moodler
* lang/en/: forum.php, moodle.php:
New strings
2004-01-23 Friday 05:21 moodler
* mod/forum/subscribe.php:
Prevent people from subscribing to group forums is they aren't in a
group
2004-01-23 Friday 05:01 moodler
* mod/forum/discuss.php:
Always show correct current group in popup menu
2004-01-23 Friday 04:48 moodler
* mod/forum/lib.php:
Fixes for recent_activity and cron to use the new groupid stuff
2004-01-23 Friday 04:34 moodler
* mod/resource/coursefiles.php:
Zipping now works in the filemanager popup from resources.
2004-01-23 Friday 04:06 moodler
* mod/forum/: backuplib.php, discuss.php, lib.php, post.html,
post.php, restorelib.php, version.php, db/mysql.php, db/mysql.sql,
db/postgres7.php, db/postgres7.sql:
Improvements to forum groups.
New forum_discussions->groupid now stores the group ID for the
discussion.
2004-01-23 Friday 00:51 moodler
* lib/javascript.php:
Load overlib.js as an external Javascript file, on all pages
2004-01-23 Friday 00:40 moodler
* lib/md5.js:
MD5 library for home-made security
2004-01-23 Friday 00:35 moodler
* lib/overlib.js:
Overlib function for slick popups
2004-01-23 Friday 00:30 moodler
* course/enrol.php:
FIxes to cope with this case:
- student authenticates
- teacher enrols the student manually
- student tries to enter course
http://moodle.org/mod/forum/discuss.php?d=4529#20493
2004-01-22 Thursday 12:27 stronk7
* backup/: backuplib.php, restorelib.php, version.php:
Now groupmode in course_modules is supported too.
2004-01-21 Wednesday 09:13 moodler
* mod/quiz/lib.php:
For now just avoid public categories.
It would be nice if instead a check was made to make sure that the
category wasn't being used by other courses, then even public
categories could be deleted.
2004-01-21 Wednesday 08:44 moodler
* mod/quiz/lib.php:
New function quiz_delete_course() which deletes all the leftover
stuff while a course is being deleted
2004-01-21 Wednesday 08:15 moodler
* lib/moodlelib.php:
In remove_course_contents() look for a module function called
module_delete_course and run it as well. This is mainly for
quizzes at the moment but basically it runs cleanup stuff whenever
a course is being emptied
2004-01-21 Wednesday 08:04 moodler
* mod/quiz/lib.php:
Only list categories that belong to real courses
2004-01-21 Wednesday 04:09 moodler
* lang/fr_ca/moodle.php:
Fixed buggy date string
2004-01-20 Tuesday 21:02 andre_bln
* lang/de/help/richtext.html:
new german version richtext.html
2004-01-20 Tuesday 19:22 moodler
* mod/quiz/lib.php:
Slight fix for null case (Add Choose item on popup menus)
2004-01-20 Tuesday 09:25 rkingdon
* mod/workshop/: lib.php, submissions.php, upload.php, view.php:
Fix bug in Analysis of Assessments
2004-01-20 Tuesday 05:58 moodler
* lang/es_ar/: README.txt, assignment.php, auth.php, choice.php,
forum.php, journal.php, moodle.php, quiz.php, resource.php,
survey.php:
Removing defunct language
2004-01-20 Tuesday 05:54 moodler
* admin/cron.php:
Flush it
2004-01-20 Tuesday 05:51 moodler
* mod/forum/: discuss.php, lib.php:
- Prevent users from replying in groups other then own.
- groups menu at discussion level
2004-01-20 Tuesday 05:50 moodler
* lang/de_du/: assignment.php, moodle.php:
Some fixes
2004-01-20 Tuesday 05:49 moodler
* lang/tr/moodle.php:
Fixed locale
2004-01-20 Tuesday 05:27 moodler
* lib/weblib.php:
Added lang and mathml tags to allowed tags