Merge branch 'MDL-26440_uid' of git://github.com/andyjdavis/moodle

This commit is contained in:
Eloy Lafuente (stronk7)
2011-02-22 10:27:38 +01:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ if ($groupmode) {
}
else {
$colname = get_string('user');
$sql = 'SELECT o.*, u.firstname, u.lastname, u.id as uid
$sql = 'SELECT o.*, u.firstname, u.lastname
FROM {quiz_overrides} o JOIN {user} u
ON o.userid = u.id
WHERE o.quiz = ?
+1 -1
View File
@@ -97,7 +97,7 @@ if (!$ratings) {
//Undo the aliasing of the user id column from user_picture::fields()
//we could clone the rating object or preserve the rating id if we needed it again
//but we don't
$rating->id = $rating->uid;
$rating->id = $rating->userid;
echo '<tr class="ratingitemheader">';
echo "<td>";
+1 -1
View File
@@ -217,7 +217,7 @@ class rating_manager {
$sortclause = "ORDER BY $options->sort";
}
$userfields = user_picture::fields('u', null, 'uid');
$userfields = user_picture::fields('u', null, 'userid');
$sql = "SELECT r.id, r.rating, r.itemid, r.userid, r.timemodified, $userfields
FROM {rating} r
LEFT JOIN {user} u ON r.userid = u.id