]> git.mjollnir.org Git - moodle.git/log
moodle.git
16 years agoMDL-16698 towarsd general editor element
skodak [Mon, 16 Feb 2009 20:54:30 +0000 (20:54 +0000)]
MDL-16698 towarsd general editor element

16 years agoMDL-16597 default to unlimited number of files instead of 0 which means no files
skodak [Mon, 16 Feb 2009 20:53:23 +0000 (20:53 +0000)]
MDL-16597 default to unlimited number of files instead of 0 which means no files

16 years agoMDL-14589 implemented browsing of course section files + fixed bug when getting paren...
skodak [Mon, 16 Feb 2009 20:47:22 +0000 (20:47 +0000)]
MDL-14589 implemented browsing of course section files + fixed bug when getting parent dirs of stored files

16 years agoMDL-18243 data module filter - make it cross-db by using sql_compare_text() ; merged...
stronk7 [Mon, 16 Feb 2009 17:58:50 +0000 (17:58 +0000)]
MDL-18243 data module filter - make it cross-db by using sql_compare_text() ; merged from 19_STABLE

16 years agowelcometocoursetext lang string: MDL-18260 small rewording
wildgirl [Mon, 16 Feb 2009 17:13:52 +0000 (17:13 +0000)]
welcometocoursetext lang string: MDL-18260 small rewording

16 years agoperformance/mymoodle MDL-18241 - Assigments were very expensive
poltawski [Mon, 16 Feb 2009 13:14:30 +0000 (13:14 +0000)]
performance/mymoodle MDL-18241 - Assigments were very expensive

Reworked to take queries out of loops and let it scale. Unfortunately
I don't think we can get the get_users_by_capability() call out of the
loop on assignments.

Real query numbers before/after:
Teacher: 12,509 / 314
Student: 127 / 72
Admin: 718 / 133

Conflicts:

mod/assignment/lib.php

Merged from 19_STABLE (with dmlib changes)

16 years agoMDL-18222 restore - fixed restoring of course->summary links. Was being handled too...
stronk7 [Mon, 16 Feb 2009 10:33:08 +0000 (10:33 +0000)]
MDL-18222 restore - fixed restoring of course->summary links. Was being handled too early. Moved to final decoding links process. Merged from 19_STABLE

16 years agoweb service MDL-17135 add moodle/site:usewebservice capability - display only web...
jerome [Mon, 16 Feb 2009 08:06:14 +0000 (08:06 +0000)]
web service MDL-17135 add moodle/site:usewebservice capability - display only web service users into administration page

16 years ago"FILTER/MDL-17703, reverse changes to work within p tag, merged from 1.9"
dongsheng [Mon, 16 Feb 2009 07:09:50 +0000 (07:09 +0000)]
"FILTER/MDL-17703, reverse changes to work within p tag, merged from 1.9"

16 years agoweblib: finish documenting print_user_picture.
tjhunt [Mon, 16 Feb 2009 04:16:10 +0000 (04:16 +0000)]
weblib: finish documenting print_user_picture.

16 years ago"FILTER/MDL-18230, remove hardcoded style for TeX formulas image, merged from 1.9"
dongsheng [Mon, 16 Feb 2009 03:10:01 +0000 (03:10 +0000)]
"FILTER/MDL-18230, remove hardcoded style for TeX formulas image, merged from 1.9"

16 years agoFix tests (missing declaration) and add tests for sql_length()
stronk7 [Sun, 15 Feb 2009 23:43:34 +0000 (23:43 +0000)]
Fix tests (missing declaration) and add tests for sql_length()

16 years agoUpdated the HEAD build version to 20090216
moodlerobot [Sun, 15 Feb 2009 23:32:15 +0000 (23:32 +0000)]
Updated the HEAD build version to 20090216

16 years agoMDL-18244 sql_length() - apply new function to resource names filter ; merged from...
stronk7 [Sun, 15 Feb 2009 23:23:41 +0000 (23:23 +0000)]
MDL-18244 sql_length() - apply new function to resource names filter ; merged from 19_STABLE

16 years agoAutomatic installer.php lang files by installer_builder (20090216)
moodlerobot [Sun, 15 Feb 2009 23:22:48 +0000 (23:22 +0000)]
Automatic installer.php lang files by installer_builder (20090216)

16 years agoMDL-18244 sql_length() - deprecate old use of function
stronk7 [Sun, 15 Feb 2009 23:18:49 +0000 (23:18 +0000)]
MDL-18244 sql_length() - deprecate old use of function

16 years agoMDL-18244 sql_length() - new cross-db function to calculate the length in chars of...
stronk7 [Sun, 15 Feb 2009 23:17:56 +0000 (23:17 +0000)]
MDL-18244 sql_length() - new cross-db function to calculate the length in chars of any expression ; from 19_STABLE

16 years agoMDL-18209 fixe short php tag - thanks Jeffrey Silverman
skodak [Sun, 15 Feb 2009 19:24:57 +0000 (19:24 +0000)]
MDL-18209 fixe short php tag - thanks Jeffrey Silverman

16 years agoMDL-18253 hopefully fixed weird float precision that breaks upgrade and gradebook
skodak [Sun, 15 Feb 2009 19:02:50 +0000 (19:02 +0000)]
MDL-18253 hopefully fixed weird float precision that breaks upgrade and gradebook

16 years agoMDL-18258 fixed legacy type and improved risky default course role hints
skodak [Sun, 15 Feb 2009 18:45:15 +0000 (18:45 +0000)]
MDL-18258 fixed legacy type and improved risky default course role hints

16 years agoMDL-18039 xhtml strict fixes
skodak [Sun, 15 Feb 2009 17:40:31 +0000 (17:40 +0000)]
MDL-18039 xhtml strict fixes

16 years agoCache LDAP connections: MDL-18130 Properly handle open LDAP connections.
iarenaza [Sun, 15 Feb 2009 15:03:33 +0000 (15:03 +0000)]
Cache LDAP connections: MDL-18130 Properly handle open LDAP connections.

Both CAS and LDAP auth plugins open new connections to the LDAP server
to get the user account details. While this is the desired behaviour
for regular logins (we probably don't have an already open connection
to the LDAP server), this is a ressource hog when we are doing user
synchronization, as the closed connections remain in the TCP_WAIT
state for a while before the server can reuse them. If we are syncing
a lot of users, we can make the server run out of available TCP
ressources.

So we cache the connection the first time we establish it and return
the same connection handle everytime, unless we've closed all the
'open' connections, or the auth object is destroyed.

In addition to that, there were a few missing calls to ldap_close().

16 years agoMDL-18041 improved admin risk info
skodak [Sun, 15 Feb 2009 11:30:45 +0000 (11:30 +0000)]
MDL-18041 improved admin risk info

16 years agoMDL-18155 mentioned possiblity to lock email field; merged from MOODLE_19_STABLE
skodak [Sun, 15 Feb 2009 10:05:33 +0000 (10:05 +0000)]
MDL-18155 mentioned possiblity to lock email field; merged from MOODLE_19_STABLE

16 years agoMDL-18155 no warning if allowed email domains set; merged from MOODLE_19_STABLE
skodak [Sun, 15 Feb 2009 09:55:48 +0000 (09:55 +0000)]
MDL-18155 no warning if allowed email domains set; merged from MOODLE_19_STABLE

16 years agoMDL-18078 adding docs links from detailed security overview report; merged from MOODL...
skodak [Sun, 15 Feb 2009 09:45:34 +0000 (09:45 +0000)]
MDL-18078 adding docs links from detailed security overview report; merged from MOODLE_19_STABLE

16 years agoUpdated the HEAD build version to 20090215
moodlerobot [Sat, 14 Feb 2009 23:31:12 +0000 (23:31 +0000)]
Updated the HEAD build version to 20090215

16 years agoMDL-9796 environment - make install & upgrade to ignore dataroot xml file (ENV_SELECT...
stronk7 [Sat, 14 Feb 2009 23:12:04 +0000 (23:12 +0000)]
MDL-9796 environment - make install & upgrade to ignore dataroot xml file (ENV_SELECT_RELEASE)

16 years agoMDL-9796 environment - add support to specify what xml file we want to use. defaults...
stronk7 [Sat, 14 Feb 2009 23:08:05 +0000 (23:08 +0000)]
MDL-9796 environment - add support to specify what xml file we want to use. defaults to newer (bc)

16 years agoNTLM SSO: MDL-13760 Speed up ntlm sign on with conditional redirect for msie
iarenaza [Sat, 14 Feb 2009 16:21:58 +0000 (16:21 +0000)]
NTLM SSO: MDL-13760 Speed up ntlm sign on with conditional redirect for msie

Provides an option, configurable by admin, to make the ntlm test happen
only if MSIE is not used. This speeds things up for IE.

16 years agoNTLM SSO: MDL-14584 Fix for several outstanding NTLM SSO issues.
iarenaza [Sat, 14 Feb 2009 16:21:14 +0000 (16:21 +0000)]
NTLM SSO: MDL-14584 Fix for several outstanding NTLM SSO issues.

These include:

MDL-14078: redirect() doubles the specified timeout when we haven't printed
           the page header and uses javascript to execute the redirect. This
           is interacting badly with some versions of IE and FF (at least
           3.0.x Windows version) that fireup javascript timers even if
           we already left the page where we set those up. Just print
           the page header (we are printing other content anyway) to
           make redirect respect our timeouts.

MDL-14071: All the relevant details are in the description of the bug :)

MDL-14297: This is probably the same as MDL-14078

16 years agoUpdated the HEAD build version to 20090214
moodlerobot [Fri, 13 Feb 2009 23:32:07 +0000 (23:32 +0000)]
Updated the HEAD build version to 20090214

16 years agoMDL-18238 Merged from MOODLE_19_STABLE
nicolasconnault [Fri, 13 Feb 2009 13:51:34 +0000 (13:51 +0000)]
MDL-18238 Merged from MOODLE_19_STABLE

16 years agoMDL-18004
nicolasconnault [Fri, 13 Feb 2009 13:50:42 +0000 (13:50 +0000)]
MDL-18004

16 years agoMDL-12846 course defaults - grrr I forgot to re-add the original setDefault()
stronk7 [Fri, 13 Feb 2009 10:04:26 +0000 (10:04 +0000)]
MDL-12846 course defaults - grrr I forgot to re-add the original setDefault()

16 years agoMDL-12846 don't apply coursedefaults->category anymore.
stronk7 [Fri, 13 Feb 2009 09:55:40 +0000 (09:55 +0000)]
MDL-12846 don't apply coursedefaults->category anymore.

16 years agoMDL-13501 Fixed headers
nicolasconnault [Fri, 13 Feb 2009 08:08:34 +0000 (08:08 +0000)]
MDL-13501 Fixed headers

16 years agoMDL-12631 Fixed breadcrumbs
nicolasconnault [Fri, 13 Feb 2009 08:07:27 +0000 (08:07 +0000)]
MDL-12631 Fixed breadcrumbs

16 years agoMDL-18163 Implemented stats report from LSU gradebook
nicolasconnault [Fri, 13 Feb 2009 08:04:10 +0000 (08:04 +0000)]
MDL-18163 Implemented stats report from LSU gradebook

16 years agocourse default settings MDL-12846 remove category, set back number of topic/week...
jerome [Fri, 13 Feb 2009 07:16:29 +0000 (07:16 +0000)]
course default settings MDL-12846 remove category, set back number of topic/week to 10

16 years agoquiz editing: MDL-18016 fix regression, adding questions on the order and paging...
tjhunt [Fri, 13 Feb 2009 07:12:41 +0000 (07:12 +0000)]
quiz editing: MDL-18016 fix regression, adding questions on the order and paging tab was broken.

16 years agoquiz editing: MDL-17284 improve wording for delete -> remove all selected questions.
tjhunt [Fri, 13 Feb 2009 07:11:55 +0000 (07:11 +0000)]
quiz editing: MDL-17284 improve wording for delete -> remove all selected questions.

16 years agoquestion bank: MDL-16345 Assorted small efficiency gains.
tjhunt [Fri, 13 Feb 2009 06:27:08 +0000 (06:27 +0000)]
question bank: MDL-16345 Assorted small efficiency gains.

16 years agoquestion bank: MDL-12719, MDL-15774, MDL-17105, and MDL-18174
tjhunt [Fri, 13 Feb 2009 06:11:42 +0000 (06:11 +0000)]
question bank: MDL-12719, MDL-15774, MDL-17105, and MDL-18174

These are all to do with the combination of the $form->category, and $form->categorymoveto fields on the question editing forms since Moodle 1.9. These are now resolved to a single ->category value in question.php, which simplifies the logic for the individual question types.

MDL-15774 and MDL-12719 errors editing Cloze question
MDL-17105 problems with qustion saving logic.
MDL-18174 'Select from subcategories' option not preserved when editing a random question.

16 years agoquestion bank: MDL-18215 select all checkbox does not always work.
tjhunt [Fri, 13 Feb 2009 05:06:01 +0000 (05:06 +0000)]
question bank: MDL-18215 select all checkbox does not always work.

16 years agoWeb service MDL-17135 add web services administration
jerome [Fri, 13 Feb 2009 03:08:35 +0000 (03:08 +0000)]
Web service MDL-17135 add web services administration

16 years agoadmin dbtransfer: MDL-18225 also, let the caller control how transactions are used.
tjhunt [Fri, 13 Feb 2009 02:49:25 +0000 (02:49 +0000)]
admin dbtransfer: MDL-18225 also, let the caller control how transactions are used.

16 years agoUpdated the HEAD build version to 20090213
moodlerobot [Thu, 12 Feb 2009 23:32:19 +0000 (23:32 +0000)]
Updated the HEAD build version to 20090213

16 years agoAutomatic installer.php lang files by installer_builder (20090213)
moodlerobot [Thu, 12 Feb 2009 23:22:23 +0000 (23:22 +0000)]
Automatic installer.php lang files by installer_builder (20090213)

16 years agoMDL-18004 Fixed typo
nicolasconnault [Thu, 12 Feb 2009 14:38:19 +0000 (14:38 +0000)]
MDL-18004 Fixed typo

16 years agoMDL-18004 Changed "dropdown" to "dropdown menu"
nicolasconnault [Thu, 12 Feb 2009 14:26:55 +0000 (14:26 +0000)]
MDL-18004 Changed "dropdown" to "dropdown menu"

16 years agoMDL-18004 Combined the two admin settings into one dropdown
nicolasconnault [Thu, 12 Feb 2009 11:00:16 +0000 (11:00 +0000)]
MDL-18004 Combined the two admin settings into one dropdown

16 years agoMDL-18004 Added two admin settings for showing/hiding the gradebook dropdown and...
nicolasconnault [Thu, 12 Feb 2009 10:27:23 +0000 (10:27 +0000)]
MDL-18004 Added two admin settings for showing/hiding the gradebook dropdown and tab navigation

16 years agoadmin dbtransfer: MDL-18225 dbtransfer script should do some output to reassure you...
tjhunt [Thu, 12 Feb 2009 08:34:35 +0000 (08:34 +0000)]
admin dbtransfer: MDL-18225 dbtransfer script should do some output to reassure you that something is happening.

16 years agoweblib: MDL-18224 Create a better mechanism for outputting progress information from...
tjhunt [Thu, 12 Feb 2009 08:33:42 +0000 (08:33 +0000)]
weblib: MDL-18224 Create a better mechanism for outputting progress information from batch jobs

16 years agoMDL-13501 Removing all capabilities but one
nicolasconnault [Thu, 12 Feb 2009 08:22:57 +0000 (08:22 +0000)]
MDL-13501 Removing all capabilities but one

16 years agoMDL-16913
nicolasconnault [Thu, 12 Feb 2009 08:02:53 +0000 (08:02 +0000)]
MDL-16913

16 years agono message
nicolasconnault [Thu, 12 Feb 2009 07:55:24 +0000 (07:55 +0000)]
no message

16 years agoquiz editing: MDL-17455 fix non-unique first column in get records. Thanks Olli for...
tjhunt [Thu, 12 Feb 2009 05:04:19 +0000 (05:04 +0000)]
quiz editing: MDL-17455 fix non-unique first column in get records. Thanks Olli for spotting this.

16 years agoUpdated the HEAD build version to 20090212
moodlerobot [Thu, 12 Feb 2009 00:33:37 +0000 (00:33 +0000)]
Updated the HEAD build version to 20090212

16 years agoAutomatic installer.php lang files by installer_builder (20090212)
moodlerobot [Thu, 12 Feb 2009 00:21:22 +0000 (00:21 +0000)]
Automatic installer.php lang files by installer_builder (20090212)

16 years agoMDL-18195 installer - always suggest/write paths using forward slashes
stronk7 [Wed, 11 Feb 2009 17:00:39 +0000 (17:00 +0000)]
MDL-18195 installer - always suggest/write paths using forward slashes

16 years agoMDL-18219 installer - respect $distro->dbtype after downloading langs
stronk7 [Wed, 11 Feb 2009 16:39:49 +0000 (16:39 +0000)]
MDL-18219 installer - respect $distro->dbtype after downloading langs

16 years agoMDL-18200 installer - Added 2 new strings to installer
stronk7 [Wed, 11 Feb 2009 16:22:20 +0000 (16:22 +0000)]
MDL-18200 installer - Added 2 new strings to installer

16 years agoMDL-18200 installer - clarify Data Directory help + 2 new strings
stronk7 [Wed, 11 Feb 2009 16:21:15 +0000 (16:21 +0000)]
MDL-18200 installer - clarify Data Directory help + 2 new strings

16 years agoMDL-18200 installer - create dataroot dir if possible
stronk7 [Wed, 11 Feb 2009 16:16:52 +0000 (16:16 +0000)]
MDL-18200 installer - create dataroot dir if possible

16 years agoMDL-18200 - fix make_upload_directory() was always failing on initial creation of...
stronk7 [Wed, 11 Feb 2009 15:26:29 +0000 (15:26 +0000)]
MDL-18200 - fix make_upload_directory() was always failing on initial creation of dataroot

16 years agoMDL-13501 Adding visual report to HEAD for community feedback and ideas.
nicolasconnault [Wed, 11 Feb 2009 15:21:07 +0000 (15:21 +0000)]
MDL-13501 Adding visual report to HEAD for community feedback and ideas.

16 years agoMDL-17807 Fixed skipped first column (Thanks Barry)
nicolasconnault [Wed, 11 Feb 2009 14:29:11 +0000 (14:29 +0000)]
MDL-17807  Fixed skipped first column (Thanks Barry)

16 years agoMDL-18004 Added a new "Settings tab" which includes course settings and report prefer...
nicolasconnault [Wed, 11 Feb 2009 14:27:22 +0000 (14:27 +0000)]
MDL-18004 Added a new "Settings tab" which includes course settings and report preferences

16 years agoquiz editing: MDL-17455 fix missing global. Oops.
tjhunt [Wed, 11 Feb 2009 10:35:41 +0000 (10:35 +0000)]
quiz editing: MDL-17455 fix missing global. Oops.

16 years agoquiz editing: MDL-17455 refactor the editing code to use the locallib functions to...
tjhunt [Wed, 11 Feb 2009 10:08:07 +0000 (10:08 +0000)]
quiz editing: MDL-17455 refactor the editing code to use the locallib functions to print the icons.

Also, use the new method in the random question class to get the list of random questions reliably.

16 years agoquiz editing: MDL-17296 final attempt to get the display of the open/closed state...
tjhunt [Wed, 11 Feb 2009 10:06:11 +0000 (10:06 +0000)]
quiz editing: MDL-17296 final attempt to get the display of the open/closed state here to Olli's satisfaction ;-) - Oops, I missed the lang string.

16 years agoMDL-17365 forum ajax rating - revert menu color back after error ; merged from 19_STABLE
stronk7 [Wed, 11 Feb 2009 10:01:11 +0000 (10:01 +0000)]
MDL-17365 forum ajax rating - revert menu color back after error ; merged from 19_STABLE

16 years agoquiz editing: Whitespace improvements.
tjhunt [Wed, 11 Feb 2009 09:48:30 +0000 (09:48 +0000)]
quiz editing: Whitespace improvements.

16 years agoquiz editing: MDL-17296 final attempt to get the display of the open/closed state...
tjhunt [Wed, 11 Feb 2009 08:12:19 +0000 (08:12 +0000)]
quiz editing: MDL-17296 final attempt to get the display of the open/closed state here to Olli's satisfaction ;-)

16 years agomoodlelib.php: Improve the phpdoc comment for userdate.
tjhunt [Wed, 11 Feb 2009 08:08:58 +0000 (08:08 +0000)]
moodlelib.php: Improve the phpdoc comment for userdate.

16 years agoquiz: MDL-17873 small efficiency gains.
tjhunt [Wed, 11 Feb 2009 07:52:26 +0000 (07:52 +0000)]
quiz: MDL-17873 small efficiency gains.

16 years agoTypo fix in comment.
tjhunt [Wed, 11 Feb 2009 07:48:44 +0000 (07:48 +0000)]
Typo fix in comment.

16 years agofile api: MDL-18111 Improve doc comments a bit.
tjhunt [Wed, 11 Feb 2009 07:46:53 +0000 (07:46 +0000)]
file api: MDL-18111 Improve doc comments a bit.

16 years agoNuke irrelevant comment.
tjhunt [Wed, 11 Feb 2009 07:24:29 +0000 (07:24 +0000)]
Nuke irrelevant comment.

16 years agoweb serviceMDL-12886 refactor servers into object + add Zend_soap and Zend_xmlrpc...
jerome [Wed, 11 Feb 2009 06:57:30 +0000 (06:57 +0000)]
web serviceMDL-12886 refactor servers into object + add Zend_soap and Zend_xmlrpc server

16 years agoupgrade refactoring: MDL-17458 remove references to block_is_compatible, since Petr...
tjhunt [Wed, 11 Feb 2009 06:43:23 +0000 (06:43 +0000)]
upgrade refactoring: MDL-17458 remove references to block_is_compatible, since Petr deleted that function.

16 years agoUpdated the HEAD build version to 20090211
moodlerobot [Wed, 11 Feb 2009 00:13:31 +0000 (00:13 +0000)]
Updated the HEAD build version to 20090211

16 years agoMDL-18188 Removed obsolete css files for IE and implemented Sam's solution
nicolasconnault [Tue, 10 Feb 2009 16:31:16 +0000 (16:31 +0000)]
MDL-18188 Removed obsolete css files for IE and implemented Sam's solution

16 years agoMDL-18188 Added a call to the new get_browser_version_classes() function in print_hea...
nicolasconnault [Tue, 10 Feb 2009 15:42:13 +0000 (15:42 +0000)]
MDL-18188 Added a call to the new get_browser_version_classes() function in print_header, so that the classes are always added to the body tag.

16 years agoMDL-18188 Added a new function with matching unit tests, following Sam's comment...
nicolasconnault [Tue, 10 Feb 2009 15:33:25 +0000 (15:33 +0000)]
MDL-18188 Added a new function with matching unit tests, following Sam's comment in the tracker

16 years agoMDL-18190
nicolasconnault [Tue, 10 Feb 2009 12:52:53 +0000 (12:52 +0000)]
MDL-18190

16 years agoMDL-18083 Disabling category item's max grade input when aggregation is Sum of Grades
nicolasconnault [Tue, 10 Feb 2009 10:42:11 +0000 (10:42 +0000)]
MDL-18083 Disabling category item's max grade input when aggregation is Sum of Grades

16 years agoMDL-18187 MDL-18186 Using grade classes to update grade items and categories, and...
nicolasconnault [Tue, 10 Feb 2009 10:40:50 +0000 (10:40 +0000)]
MDL-18187 MDL-18186 Using grade classes to update grade items and categories, and removed error checking.

16 years agoweblib: XHTML strict.
tjhunt [Tue, 10 Feb 2009 03:27:38 +0000 (03:27 +0000)]
weblib: XHTML strict.

16 years agoUpdated the HEAD build version to 20090210
moodlerobot [Mon, 9 Feb 2009 23:41:30 +0000 (23:41 +0000)]
Updated the HEAD build version to 20090210

16 years agoMDL-18198 installer - change distro to distrolib.php and delete distro hack from...
stronk7 [Mon, 9 Feb 2009 19:35:57 +0000 (19:35 +0000)]
MDL-18198 installer - change distro to distrolib.php and delete distro hack from installlib

16 years agoMDL-18194 detect if driver install before trying to create db
skodak [Mon, 9 Feb 2009 17:51:01 +0000 (17:51 +0000)]
MDL-18194 detect if driver install before trying to create db

16 years agoMDL-18195 installer - improve CFG->dirroot error message
stronk7 [Mon, 9 Feb 2009 17:46:29 +0000 (17:46 +0000)]
MDL-18195 installer - improve CFG->dirroot error message

16 years agoMDL-18195 installer - ignore differences in slashes when checking $CFG->dirroot
stronk7 [Mon, 9 Feb 2009 17:30:11 +0000 (17:30 +0000)]
MDL-18195 installer - ignore differences in slashes when checking $CFG->dirroot

16 years agoMDL-18083 (including MDL-15680, MDL-17829, MDL-17807, MDL-18004, MDL-12631, MDL-16913)
nicolasconnault [Mon, 9 Feb 2009 10:49:41 +0000 (10:49 +0000)]
MDL-18083 (including MDL-15680, MDL-17829, MDL-17807, MDL-18004, MDL-12631, MDL-16913)

16 years agoMDL-18125 - improve lang for options/choices
danmarsden [Mon, 9 Feb 2009 10:09:57 +0000 (10:09 +0000)]
MDL-18125 - improve lang for options/choices

16 years agoMDL-17198 - show better confirmation of choice selection. missed lang file
danmarsden [Mon, 9 Feb 2009 09:54:27 +0000 (09:54 +0000)]
MDL-17198 - show better confirmation of choice selection. missed lang file

16 years agoMDL-17198 - show better confirmation of choice selection.
danmarsden [Mon, 9 Feb 2009 09:51:06 +0000 (09:51 +0000)]
MDL-17198 - show better confirmation of choice selection.