]> git.mjollnir.org Git - moodle.git/log
moodle.git
17 years agoMDL-11194, course role names not reflected in course description
toyomoyo [Tue, 27 Nov 2007 01:56:21 +0000 (01:56 +0000)]
MDL-11194, course role names not reflected in course description

17 years agoMDL-12350 do not set parent cat when updating; merged from MOODLE_19_STABLE
skodak [Mon, 26 Nov 2007 17:45:56 +0000 (17:45 +0000)]
MDL-12350 do not set parent cat when updating; merged from MOODLE_19_STABLE

17 years agoMDL-12313 basically rationalising getting calendar events function calls
dwoolhead [Mon, 26 Nov 2007 14:43:28 +0000 (14:43 +0000)]
MDL-12313 basically rationalising getting calendar events function calls

17 years agofix for error message
jamiesensei [Mon, 26 Nov 2007 13:32:23 +0000 (13:32 +0000)]
fix for error message

17 years agoMDL-12331, hidden teacher should not be displayed in choice results
toyomoyo [Mon, 26 Nov 2007 06:01:26 +0000 (06:01 +0000)]
MDL-12331, hidden teacher should not be displayed in choice results

17 years agoMDL-12294 - another string fix
scyrma [Mon, 26 Nov 2007 04:52:14 +0000 (04:52 +0000)]
MDL-12294 - another string fix

17 years agoMDL-12175, forum reset should delete attachments
toyomoyo [Mon, 26 Nov 2007 04:22:10 +0000 (04:22 +0000)]
MDL-12175, forum reset should delete attachments

17 years agoFix for par of the missing strings, as reported in MDL-12294
scyrma [Mon, 26 Nov 2007 04:10:08 +0000 (04:10 +0000)]
Fix for par of the missing strings, as reported in MDL-12294

17 years agoexpecting multiple groups from sql
toyomoyo [Mon, 26 Nov 2007 03:21:46 +0000 (03:21 +0000)]
expecting multiple groups from sql

17 years agoMDL-12081, teacher with import capability can not import course
toyomoyo [Mon, 26 Nov 2007 02:39:28 +0000 (02:39 +0000)]
MDL-12081, teacher with import capability can not import course

17 years agoAutomatic installer.php lang files by installer_builder (20071125)
moodler [Sun, 25 Nov 2007 03:45:54 +0000 (03:45 +0000)]
Automatic installer.php lang files by installer_builder (20071125)

17 years agoMDL-12130 fixed regression - disabledIf did not work in dateselectors; merged from...
skodak [Sat, 24 Nov 2007 13:37:07 +0000 (13:37 +0000)]
MDL-12130 fixed regression - disabledIf did not work in dateselectors; merged from MOODLE_19_STABLE

17 years agoMDL-12133 validate() method tidying up; merged from MOODLE_19_STABLE
skodak [Fri, 23 Nov 2007 22:15:07 +0000 (22:15 +0000)]
MDL-12133 validate() method tidying up; merged from MOODLE_19_STABLE

17 years agoMDL-12329 fixed last access when course not accessed yet - patch by Yolanda Ordóñez...
skodak [Fri, 23 Nov 2007 21:31:58 +0000 (21:31 +0000)]
MDL-12329 fixed last access when course not accessed yet - patch by Yolanda Ordóñez Rufat; merged from MOODLE_19_STABLE

17 years agoMDL-12221 custom themes revisited - fixed bug in previous commit, added more develope...
skodak [Fri, 23 Nov 2007 20:26:16 +0000 (20:26 +0000)]
MDL-12221 custom themes revisited - fixed bug in previous commit, added more developer debug; merged from MOODLE_19_STABLE

17 years agoMDL-12221 custom themes revisited - implemented container concept; merged from MOODLE...
skodak [Fri, 23 Nov 2007 16:49:51 +0000 (16:49 +0000)]
MDL-12221 custom themes revisited - implemented container concept; merged from MOODLE_19_STABLE

17 years agoMDL-12296:
thepurpleblob [Fri, 23 Nov 2007 15:49:00 +0000 (15:49 +0000)]
MDL-12296:
Unenrol disable option now works in synchronisation script.

Merged from STABLE_19

17 years agoAutomatic installer.php lang files by installer_builder (20071123)
moodler [Fri, 23 Nov 2007 04:50:46 +0000 (04:50 +0000)]
Automatic installer.php lang files by installer_builder (20071123)

17 years agouser/index: Add "enrolment details" view to Participants page - MDL-12311
martinlanghoff [Fri, 23 Nov 2007 00:23:39 +0000 (00:23 +0000)]
user/index: Add "enrolment details" view to Participants page - MDL-12311

With this patch, the additional roles/groups/groupings columns get moved
to a special "enrolment details" view. To support this, the handling of
the $mode is revamped to use $mode constants.

To keep performance issues at bay, the enrolment details view is only
available when viewing paginated resultsets, and will reset itself to
'brief' if the conditions aren't met. The $mode is sticky, so it is
quite possible to have a mismatched $mode -- so he handle the case
explicitly.

17 years agouser/index: More consistent handling of groups column - MDL-12311
martinlanghoff [Fri, 23 Nov 2007 00:23:24 +0000 (00:23 +0000)]
user/index: More consistent handling of groups column - MDL-12311

17 years agouser/index: Fix Participants page for sitecourse - MDL-12311
martinlanghoff [Fri, 23 Nov 2007 00:23:10 +0000 (00:23 +0000)]
user/index: Fix Participants page for sitecourse - MDL-12311

Groups/groupings don't seem to map normally through enrolments
as you would expect with site. Disable for sitecourse.

17 years agouser/index: Show enrolment and group/grouping data in Participants page MDL-12311
martinlanghoff [Fri, 23 Nov 2007 00:22:56 +0000 (00:22 +0000)]
user/index: Show enrolment and group/grouping data in Participants page MDL-12311

The participants page will now show (to users that have
moodle/role:assign) the relevant enrolments for each participant.

This is done with a second SELECT using a WHERE id IN() so we are
limited to doing it with small datasets. This is for 2 reasons

 - we cannot retrieve all teh data in the "main" SELECT because
   the outer joins will bring dup rows, breaking LIMIT

 - we cannot use the main SELECT as a subselect because we cannot
   retrieve the LIMIT part of the statement with the current dmllib

 - on large courses / sitecourse performance would be horrible

so it is limited to paginated datasets. It is doing 20 recs at a time,
the "extra" SELECT takes ~7ms on a some large Pg databases).

This will generate an extra DB query on Oracle (and any other DB that
cannot rewind the recordset) because we walk the main rs twice.

While at it, ensure we mark the unsortable columns thus...

17 years agoDeleting one ='' condition that isn't cross-db nor necessary. MDL-12186
stronk7 [Thu, 22 Nov 2007 22:47:49 +0000 (22:47 +0000)]
Deleting one ='' condition that isn't cross-db nor necessary. MDL-12186

Merged from MOODLE_19_STABLE

17 years agoMDL-12312 fixed outdated aggregation help, added examples; merged from MOODLE_19_STABLE
skodak [Thu, 22 Nov 2007 21:36:59 +0000 (21:36 +0000)]
MDL-12312 fixed outdated aggregation help, added examples; merged from MOODLE_19_STABLE

17 years agoMDL-12322 - Reference to incorrect language file
tjhunt [Thu, 22 Nov 2007 18:14:57 +0000 (18:14 +0000)]
MDL-12322 - Reference to incorrect language file

17 years agoMDL-12312 fixed outdated aggregation help; merged from MOODLE_19_STABLE
skodak [Thu, 22 Nov 2007 17:53:08 +0000 (17:53 +0000)]
MDL-12312 fixed outdated aggregation help; merged from MOODLE_19_STABLE

17 years agoMDL-12282 - fix typo in previous commit. Sorry.
tjhunt [Thu, 22 Nov 2007 11:51:16 +0000 (11:51 +0000)]
MDL-12282 - fix typo in previous commit. Sorry.

17 years agoMDL-9506 Returning stdClass objects instead of grade_item objects: for security
nicolasconnault [Thu, 22 Nov 2007 08:47:34 +0000 (08:47 +0000)]
MDL-9506 Returning stdClass objects instead of grade_item objects: for security

17 years agoMerged string fix from stable 19
moodler [Thu, 22 Nov 2007 07:05:30 +0000 (07:05 +0000)]
Merged string fix from stable 19

17 years agoReplaces 'GMT' by 'UTC' where it showed in user interface and fixes MDL-9164.
scyrma [Thu, 22 Nov 2007 06:28:58 +0000 (06:28 +0000)]
Replaces 'GMT' by 'UTC' where it showed in user interface and fixes MDL-9164.

17 years agoMDL-12182 Reverting to pre-upgrade in order to prepare a patch instead
nicolasconnault [Thu, 22 Nov 2007 06:17:01 +0000 (06:17 +0000)]
MDL-12182 Reverting to pre-upgrade in order to prepare a patch instead

17 years agoMDL-12182 Reverting to pre-upgrade in order to prepare a patch instead
nicolasconnault [Thu, 22 Nov 2007 05:42:46 +0000 (05:42 +0000)]
MDL-12182 Reverting to pre-upgrade in order to prepare a patch instead

17 years agoMDL-12182 More grade_item unit tests
nicolasconnault [Thu, 22 Nov 2007 05:37:49 +0000 (05:37 +0000)]
MDL-12182 More grade_item unit tests

17 years agoMDL-12309, gradebook can not sort by names while in group mode
toyomoyo [Thu, 22 Nov 2007 05:17:26 +0000 (05:17 +0000)]
MDL-12309, gradebook can not sort by names while in group mode

17 years agotaking out user class from firstname/lastname cell to remove image css
toyomoyo [Thu, 22 Nov 2007 01:37:59 +0000 (01:37 +0000)]
taking out user class from firstname/lastname cell to remove image css

17 years agoturn this block off when $CFG->messaging is off
toyomoyo [Thu, 22 Nov 2007 01:17:03 +0000 (01:17 +0000)]
turn this block off when $CFG->messaging is off

17 years agoMDL-10028, adding a string
toyomoyo [Thu, 22 Nov 2007 01:05:36 +0000 (01:05 +0000)]
MDL-10028, adding a string

17 years agoMDL-12305 - Don't let the quiz reorder tool put a page break at the start of the...
tjhunt [Wed, 21 Nov 2007 18:09:11 +0000 (18:09 +0000)]
MDL-12305 - Don't let the quiz reorder tool put a page break at the start of the quiz. Merged from MOODLE_19_STABLE.

17 years agoMDL-12305 - Quiz reorder tool broken. Merged from MOODLE_19_STABLE.
tjhunt [Wed, 21 Nov 2007 18:00:09 +0000 (18:00 +0000)]
MDL-12305 - Quiz reorder tool broken. Merged from MOODLE_19_STABLE.

17 years agoFix some whitespace.
tjhunt [Wed, 21 Nov 2007 16:30:25 +0000 (16:30 +0000)]
Fix some whitespace.

17 years agoFix typo.
tjhunt [Wed, 21 Nov 2007 16:28:45 +0000 (16:28 +0000)]
Fix typo.

17 years agoFixes reopened bug MDL-7472, "Explicitly label radio buttons in Survey" - removes...
nfreear [Wed, 21 Nov 2007 14:50:32 +0000 (14:50 +0000)]
Fixes reopened bug MDL-7472, "Explicitly label radio buttons in Survey" - removes use of USER->screenreader using get_accesshide + many other accessibility fixes.

17 years agoMDL-12296:
thepurpleblob [Wed, 21 Nov 2007 11:06:46 +0000 (11:06 +0000)]
MDL-12296:
Added option to prevent database enrolment plugin unenrolling users.

Merged from STABLE_19

17 years agoMDL-9506 Implemented and tested the new API functions
nicolasconnault [Wed, 21 Nov 2007 10:04:21 +0000 (10:04 +0000)]
MDL-9506 Implemented and tested the new API functions

17 years agoMDL-10294, MDL-10028, changing messaging/bulk messaging system
toyomoyo [Wed, 21 Nov 2007 07:53:42 +0000 (07:53 +0000)]
MDL-10294, MDL-10028, changing messaging/bulk messaging system

17 years agoMDL-8090 Added new help file. Merged from stable
mudrd8mz [Wed, 21 Nov 2007 03:09:37 +0000 (03:09 +0000)]
MDL-8090 Added new help file. Merged from stable

17 years agoMDL-8090 Merged from stable. Added new strings for lang.php
mudrd8mz [Wed, 21 Nov 2007 03:08:12 +0000 (03:08 +0000)]
MDL-8090 Merged from stable. Added new strings for lang.php

17 years agoMDL-8090 Merged from stable. Print an obsolete message.
mudrd8mz [Wed, 21 Nov 2007 03:05:12 +0000 (03:05 +0000)]
MDL-8090 Merged from stable. Print an obsolete message.

17 years agoMDL-8090 Merged from stable
mudrd8mz [Wed, 21 Nov 2007 03:03:59 +0000 (03:03 +0000)]
MDL-8090 Merged from stable

17 years agoFixes typo 'yes'' -> 'yes'
mudrd8mz [Tue, 20 Nov 2007 23:47:37 +0000 (23:47 +0000)]
Fixes typo 'yes'' -> 'yes'

17 years agoApplying one missing string. tableofcontentsabbrev. MDL-12071
stronk7 [Tue, 20 Nov 2007 23:44:08 +0000 (23:44 +0000)]
Applying one missing string. tableofcontentsabbrev. MDL-12071

Merged from MOODLE_19_STABLE

17 years agoAdding one missing string. tableofcontentsabbrev. MDL-12071
stronk7 [Tue, 20 Nov 2007 23:41:52 +0000 (23:41 +0000)]
Adding one missing string. tableofcontentsabbrev. MDL-12071

Merged from MOODLE_19_STABLE

17 years agoadded default values for datetime fields
diml [Tue, 20 Nov 2007 23:37:15 +0000 (23:37 +0000)]
added default values for datetime fields

17 years agofix table name for deletion of indexes before regeneration
diml [Tue, 20 Nov 2007 23:22:56 +0000 (23:22 +0000)]
fix table name for deletion of indexes before regeneration

17 years agofix unchecked foreach loops
diml [Tue, 20 Nov 2007 23:20:22 +0000 (23:20 +0000)]
fix unchecked foreach loops

17 years agoMDL-12284 Moved require_js to weblib and improved it so that it works if called durin...
sam_marshall [Tue, 20 Nov 2007 18:04:03 +0000 (18:04 +0000)]
MDL-12284 Moved require_js to weblib and improved it so that it works if called during header (also tidied up code)

17 years agoMDL-12286 - 'Save as new question' button ignores the setting in the 'Save in categor...
tjhunt [Tue, 20 Nov 2007 17:52:16 +0000 (17:52 +0000)]
MDL-12286 - 'Save as new question' button ignores the setting in the 'Save in category' dropdown. Merged from MOODLE_19_STABLE.

17 years agoMDL-12172 - Sorry, more fall-out from converting continue buttons to use GET instead...
tjhunt [Tue, 20 Nov 2007 17:31:13 +0000 (17:31 +0000)]
MDL-12172 - Sorry, more fall-out from converting continue buttons to use GET instead of POST. Sometimes, URLs were being passed in with & already repalced by & and we weren't handling that properly. Should now be fixed. Merged from MOODLE_19_STABLE.

17 years agoMDL-12282 - Numerical question type - the units are displayed on the editing form...
tjhunt [Tue, 20 Nov 2007 16:57:22 +0000 (16:57 +0000)]
MDL-12282 - Numerical question type - the units are displayed on the editing form with a stupidly large number of decimal places. Merged from MOODLE_18_STABLE.

17 years agoMDL-12280 - Question bank forgets sort order when adding multiple questions to a...
tjhunt [Tue, 20 Nov 2007 15:54:34 +0000 (15:54 +0000)]
MDL-12280 - Question bank forgets sort order when adding multiple questions to a quiz. Merged from MOODLE_19_STABLE.

17 years agoMDL-12133 - Errors calling parent::validation in a moodle form subclass because the...
tjhunt [Tue, 20 Nov 2007 15:08:05 +0000 (15:08 +0000)]
MDL-12133 - Errors calling parent::validation in a moodle form subclass because the base class method returns true not an empty array. This patch allow subclasses to start their validate method with

$errors = parent::validation($data, $files);

which is what you naturally want to do if you are used to object oriented programming.

Merged from MOODLE_19_STABLE.

17 years agoRemove a developer debug notice and save a database query. Merged from MOODLE_19_STABLE.
tjhunt [Tue, 20 Nov 2007 14:46:50 +0000 (14:46 +0000)]
Remove a developer debug notice and save a database query. Merged from MOODLE_19_STABLE.

17 years agoFollow up for MDL-12256, "Course AJAX has very poor accessibility - ALT text" - IE...
nfreear [Tue, 20 Nov 2007 14:37:58 +0000 (14:37 +0000)]
Follow up for MDL-12256, "Course AJAX has very poor accessibility - ALT text" - IE tooltip/ title hack.

17 years agoFix for Canadian Postal Code
ethem [Tue, 20 Nov 2007 13:22:39 +0000 (13:22 +0000)]
Fix for Canadian Postal Code

http://moodle.org/mod/forum/discuss.php?d=81736

17 years agoMDL-12133 - Errors calling parent::validation in a moodle form subclass because the...
tjhunt [Tue, 20 Nov 2007 12:41:04 +0000 (12:41 +0000)]
MDL-12133 - Errors calling parent::validation in a moodle form subclass because the base class method signature was changed. This patch fixes all calls to parent::validation in the question editing forms. Merged from MOODLE_19_STABLE.

17 years agoMakes it possible to confirm users using manual auth system.
scyrma [Tue, 20 Nov 2007 05:28:33 +0000 (05:28 +0000)]
Makes it possible to confirm users using manual auth system.

17 years agofixing header/formatting
toyomoyo [Tue, 20 Nov 2007 05:16:11 +0000 (05:16 +0000)]
fixing header/formatting

17 years agoAutomatic installer.php lang files by installer_builder (20071120)
moodler [Tue, 20 Nov 2007 05:05:51 +0000 (05:05 +0000)]
Automatic installer.php lang files by installer_builder (20071120)

17 years agoMDL-12234, fixing unicode issues with global search
toyomoyo [Tue, 20 Nov 2007 04:12:18 +0000 (04:12 +0000)]
MDL-12234, fixing unicode issues with global search

17 years agoMDL-12255 Adding questiontext decoding and subquestions validation when editing
pichetp [Tue, 20 Nov 2007 03:50:28 +0000 (03:50 +0000)]
MDL-12255 Adding questiontext decoding and subquestions validation when editing

17 years agoSolving MDL-12063 qtype_questions where left orphans when questions whe deleted or
pichetp [Tue, 20 Nov 2007 03:48:29 +0000 (03:48 +0000)]
Solving MDL-12063 qtype_questions where left orphans when questions whe deleted or
 qtype change

17 years agoMDL-12264 - course/info: check if course is hidden before displaying info about it.
mattc-catalyst [Tue, 20 Nov 2007 02:32:09 +0000 (02:32 +0000)]
MDL-12264 - course/info: check if course is hidden before displaying info about it.

Author: Matt Clarkson <mattc@catalyst.net.nz>

17 years agoMDL-12142 mailout-debugger: Now works on Windows too
martinlanghoff [Tue, 20 Nov 2007 00:31:40 +0000 (00:31 +0000)]
MDL-12142 mailout-debugger: Now works on Windows too

Switched to use sys_get_temp_dir() to define
which tempdir to use.

17 years agoaccesslib: has_capability_in_accessdata() respects rdef locality a bit more
martinlanghoff [Tue, 20 Nov 2007 00:18:31 +0000 (00:18 +0000)]
accesslib: has_capability_in_accessdata() respects rdef locality a bit more

With this patch, we respect rdef locality when two roles
assignments in the same context have conflicting rdefs.
In that case, the most local rdef wins.

So RA locality still matters most. If you are a teacher
sitewide and a student in course X, student role trumps
teacher.

For a use case, see the discussion here
http://moodle.org/mod/forum/discuss.php?d=84472

Notes:

- If we wanted to have locality of RDEF trump everything
  we can. A comment in this patch shows how.

- I don't know how to reproduce this in pure SQL.

And Also:

This patch also fixes a bug where if CAP_PROHIBIT was set
_and_ another role added to it in the same context, we would
add or substract 1 to CAP_PROHIBIT, and it would lose its magic.

And while at it, tighten the code to avoid casts. All the
ints are unambiguously ints.

17 years agoSome question formating...
stronk7 [Tue, 20 Nov 2007 00:10:05 +0000 (00:10 +0000)]
Some question formating...

Merged from MOODLE_19_STABLE

17 years agoMDL-12249 fixed distribution for small groups; merged from MOODLE_19_STABLE
skodak [Mon, 19 Nov 2007 22:55:39 +0000 (22:55 +0000)]
MDL-12249 fixed distribution for small groups; merged from MOODLE_19_STABLE

17 years agoMDL-12249 fixed small group ration, can be overriden from config.php now; merged...
skodak [Mon, 19 Nov 2007 21:41:02 +0000 (21:41 +0000)]
MDL-12249 fixed small group ration, can be overriden from config.php now; merged from MOODLE_19_STABLE

17 years agoMDL-12249 groups UI cleanup and improvements - see tracker for details; merged from...
skodak [Mon, 19 Nov 2007 20:31:57 +0000 (20:31 +0000)]
MDL-12249 groups UI cleanup and improvements - see tracker for details; merged from MOODLE_19_STABLE

17 years agofix some keys
diml [Mon, 19 Nov 2007 20:09:38 +0000 (20:09 +0000)]
fix some keys

17 years agoFixes for bug MDL-12256, "Course AJAX has very poor accessibility - ALT text" (includ...
nfreear [Mon, 19 Nov 2007 17:22:04 +0000 (17:22 +0000)]
Fixes for bug MDL-12256, "Course AJAX has very poor accessibility - ALT text" (includes white-space cleanup).

17 years agoFixes for bug MDL-12256, "Course AJAX has very poor accessibility - ALT text".
nfreear [Mon, 19 Nov 2007 17:21:28 +0000 (17:21 +0000)]
Fixes for bug MDL-12256, "Course AJAX has very poor accessibility - ALT text".

17 years agoInitial fix for MDL-12256, "Course AJAX has very poor accessibility - ALT text" ...
nfreear [Mon, 19 Nov 2007 15:25:16 +0000 (15:25 +0000)]
Initial fix for MDL-12256, "Course AJAX has very poor accessibility - ALT text" - test, imgAttributes.length NOT attributes.length.

17 years agoMDL-12075 Display individually colour-coded events in calendar rather than random...
sam_marshall [Mon, 19 Nov 2007 10:53:23 +0000 (10:53 +0000)]
MDL-12075 Display individually colour-coded events in calendar rather than random day colours

17 years agoMerged from 1.9
moodler [Mon, 19 Nov 2007 07:13:02 +0000 (07:13 +0000)]
Merged from 1.9

Improvements to the tabs for assigning and overriding roles.   MDL-12120

Tabs are now all on the top row
Tabs have clearer titles
Other help texts improved

17 years agoMerged fixes for override colouring MDL-12248
moodler [Mon, 19 Nov 2007 06:59:19 +0000 (06:59 +0000)]
Merged fixes for override colouring    MDL-12248

17 years agoMDL-3632 : this prevents people without mod/forum:viewhiddentimedposts to see hiddent...
scyrma [Mon, 19 Nov 2007 04:44:08 +0000 (04:44 +0000)]
MDL-3632 : this prevents people without mod/forum:viewhiddentimedposts to see hiddentimedposts.

17 years agoMDL-12218, display course specific role names on override page
toyomoyo [Mon, 19 Nov 2007 04:36:21 +0000 (04:36 +0000)]
MDL-12218, display course specific role names on override page

17 years agochanged to get_recordset_sql because get_records forces the first element to be$
toyomoyo [Mon, 19 Nov 2007 04:13:15 +0000 (04:13 +0000)]
changed to get_recordset_sql because get_records forces the first element to be$

17 years agouser_login() was not converted to using get_cache_flags().
martinlanghoff [Mon, 19 Nov 2007 02:43:48 +0000 (02:43 +0000)]
user_login() was not converted to using get_cache_flags().

It was still using the 'old' get_config() interface, so the 'cookie'
set by ntlmsso_finish() wasn't retrieved at all, and the automatic
login always failed.

Signed-off-by: Iñaki Arenaza <iarenuno@eteo.mondragon.edu>
Author: Iñaki Arenaza <iarenuno@eteo.mondragon.edu>
Committer: Martin Langhoff <martin@catalyst.net.nz>

17 years agoIf the cache flag is not set, it doesn't make sense trying to test its value
martinlanghoff [Mon, 19 Nov 2007 02:43:34 +0000 (02:43 +0000)]
If the cache flag is not set, it doesn't make sense trying to test its value

Signed-off-by: Iñaki Arenaza <iarenuno@eteo.mondragon.edu>
Author: Iñaki Arenaza <iarenuno@eteo.mondragon.edu>
Committer: Martin Langhoff <martin@catalyst.net.nz>

17 years agoFix typo in ntlmsso_finish()
martinlanghoff [Mon, 19 Nov 2007 02:43:16 +0000 (02:43 +0000)]
Fix typo in ntlmsso_finish()

Signed-off-by: Iñaki Arenaza <iarenuno@eteo.mondragon.edu>
Author: Iñaki Arenaza <iarenuno@eteo.mondragon.edu>
Committer: Martin Langhoff <martin@catalyst.net.nz>

17 years agomerged fix for MDLSITE-294, needs a forced type cast
toyomoyo [Mon, 19 Nov 2007 02:25:22 +0000 (02:25 +0000)]
merged fix for MDLSITE-294, needs a forced type cast

17 years agoMDL-12172: fixed get parameters not being submitted in Firefox
mattc-catalyst [Mon, 19 Nov 2007 01:45:45 +0000 (01:45 +0000)]
MDL-12172: fixed get parameters not being submitted in Firefox

Author: Matt Clarkson <mattc@catalyst.net.nz>

17 years agochanged to get_recordset_sql because get_records forces the first element to be key
toyomoyo [Mon, 19 Nov 2007 01:44:26 +0000 (01:44 +0000)]
changed to get_recordset_sql because get_records forces the first element to be key

17 years agomaking a SQL cross-db compatible
toyomoyo [Mon, 19 Nov 2007 01:13:31 +0000 (01:13 +0000)]
making a SQL cross-db compatible

17 years agoMerging unmerged code. MDL-11743 and MDL-11671
stronk7 [Sun, 18 Nov 2007 17:12:58 +0000 (17:12 +0000)]
Merging unmerged code. MDL-11743 and MDL-11671

17 years agoMDL-11099 and MDL-11655 Don't show external db password in clear
iarenaza [Sun, 18 Nov 2007 12:45:21 +0000 (12:45 +0000)]
MDL-11099 and MDL-11655 Don't show external db password in clear

17 years agoAutomatic installer.php lang files by installer_builder (20071118)
moodler [Sun, 18 Nov 2007 04:36:52 +0000 (04:36 +0000)]
Automatic installer.php lang files by installer_builder (20071118)

17 years agoMDL-12231 fixed applying of CFG defaults during initial install phase; merged from...
skodak [Sat, 17 Nov 2007 21:21:37 +0000 (21:21 +0000)]
MDL-12231 fixed applying of CFG defaults during initial install phase; merged from MOODLE_19_STABLE

17 years agofixed typo throwing warnings during install; merged from MOODLE_19_STABLE
skodak [Sat, 17 Nov 2007 20:55:44 +0000 (20:55 +0000)]
fixed typo throwing warnings during install; merged from MOODLE_19_STABLE