From: toyomoyo Date: Wed, 22 Aug 2007 03:27:57 +0000 (+0000) Subject: MDL-10911, setting moodle/tag:create to allow as default for the authenticated user... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0f07c40e01e9273c08f1b06534e9bbb3818d2aa2;p=moodle.git MDL-10911, setting moodle/tag:create to allow as default for the authenticated user role --- diff --git a/lib/db/access.php b/lib/db/access.php index 37e26358dc..21511dbaf1 100644 --- a/lib/db/access.php +++ b/lib/db/access.php @@ -1123,7 +1123,8 @@ $moodle_capabilities = array( 'student' => CAP_ALLOW, 'teacher' => CAP_ALLOW, 'editingteacher' => CAP_ALLOW, - 'admin' => CAP_ALLOW + 'admin' => CAP_ALLOW, + 'user' => CAP_ALLOW ) ), diff --git a/version.php b/version.php index 205ee292bb..25ee37dbd2 100644 --- a/version.php +++ b/version.php @@ -6,7 +6,7 @@ // This is compared against the values stored in the database to determine // whether upgrades should be performed (see lib/db/*.php) - $version = 2007082000; // YYYYMMDD = date + $version = 2007082200; // YYYYMMDD = date // XY = increments within a single day $release = '1.9 Beta +'; // Human-friendly version name