Skip to content

Commit

Permalink
MDL-42703 Course: Remove alias from queries to satisfy MSSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael de Raadt committed Nov 5, 2013
1 parent 5386f0b commit 2bec969
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions course/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -3430,19 +3430,19 @@ function course_change_sortorder_after_course($courseorid, $moveaftercourseid) {

if ((int)$moveaftercourseid === 0) {
// We've moving the course to the start of the queue.
$sql = 'SELECT c.sortorder
FROM {course} c
WHERE c.category = :categoryid
ORDER BY c.sortorder';
$sql = 'SELECT sortorder
FROM {course}
WHERE category = :categoryid
ORDER BY sortorder';
$params = array(
'categoryid' => $course->category
);
$sortorder = $DB->get_field_sql($sql, $params, IGNORE_MULTIPLE);

$sql = 'UPDATE {course} c
$sql = 'UPDATE {course}
SET sortorder = sortorder + 1
WHERE c.category = :categoryid
AND c.id <> :id';
WHERE category = :categoryid
AND id <> :id';
$params = array(
'categoryid' => $course->category,
'id' => $course->id,
Expand All @@ -3462,9 +3462,9 @@ function course_change_sortorder_after_course($courseorid, $moveaftercourseid) {
}
// Increment all courses in the same category that are ordered after the moveafter course.
// This makes a space for the course we're moving.
$sql = 'UPDATE {course} c
$sql = 'UPDATE {course}
SET sortorder = sortorder + 1
WHERE c.category = :categoryid
WHERE category = :categoryid
AND sortorder > :sortorder';
$params = array(
'categoryid' => $moveaftercourse->category,
Expand Down

0 comments on commit 2bec969

Please sign in to comment.