Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Stud.IP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marcus Eibrink-Lunzenauer
Stud.IP
Commits
3ec7589b
Commit
3ec7589b
authored
5 months ago
by
Jan-Hendrik Willms
Committed by
David Siegfried
5 months ago
Browse files
Options
Downloads
Patches
Plain Diff
fix sql errors in course sets, fixes #4630
Closes #4630 Merge request
studip/studip!3440
parent
f4f6b822
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/views/admission/courseset/configure.php
+1
-1
1 addition, 1 deletion
app/views/admission/courseset/configure.php
lib/classes/admission/CourseSet.php
+1
-1
1 addition, 1 deletion
lib/classes/admission/CourseSet.php
with
2 additions
and
2 deletions
app/views/admission/courseset/configure.php
+
1
−
1
View file @
3ec7589b
...
...
@@ -167,7 +167,7 @@ if (isset($flash['error'])) {
ON `seminare`.`seminar_id` = `semester_courses`.`course_id`
JOIN `semester_data` USING (`semester_id`)
WHERE `seminare`.`seminar_id` IN ( :course_ids )
'
ORDER BY `semester_data`.`beginn`, `VeranstaltungsNummer`, `Name`"
,
ORDER BY `semester_data`.`beginn`, `VeranstaltungsNummer`, `Name`"
,
[
'course_ids'
=>
$courseIds
],
)
?>
...
...
This diff is collapsed.
Click to expand it.
lib/classes/admission/CourseSet.php
+
1
−
1
View file @
3ec7589b
...
...
@@ -1042,7 +1042,7 @@ class CourseSet
LEFT JOIN `semester_data` USING (`semester_id`)
WHERE
`seminare`.`seminar_id` IN ( :course_ids )
'
ORDER BY `semester_data`.`beginn`, `VeranstaltungsNummer`, `Name`
'
"
,
ORDER BY `semester_data`.`beginn`, `VeranstaltungsNummer`, `Name`"
,
[
'course_ids'
=>
array_keys
(
$this
->
courses
)
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment