Index: trunk/extensions/EducationProgram/actions/ViewCourseAction.php |
— | — | @@ -59,7 +59,7 @@ |
60 | 60 | |
61 | 61 | $pager = new EPArticleTable( |
62 | 62 | $this->getContext(), |
63 | | - array( 'id' => $studentIds ), |
| 63 | + array( 'user_id' => $studentIds ), |
64 | 64 | array( 'course_id' => $course->getId() ) |
65 | 65 | ); |
66 | 66 | |
Index: trunk/extensions/EducationProgram/specials/SpecialMyCourses.php |
— | — | @@ -195,7 +195,7 @@ |
196 | 196 | |
197 | 197 | $pager = new EPArticleTable( |
198 | 198 | $this->getContext(), |
199 | | - array( 'id' => $this->getUser()->getId() ), |
| 199 | + array( 'user_id' => $this->getUser()->getId() ), |
200 | 200 | array( 'course_id' => $course->getId() ) |
201 | 201 | ); |
202 | 202 | |
— | — | @@ -233,7 +233,7 @@ |
234 | 234 | |
235 | 235 | $pager = new EPArticleTable( |
236 | 236 | $this->getContext(), |
237 | | - array( 'id' => $this->getUser()->getId() ), |
| 237 | + array( 'user_id' => $this->getUser()->getId() ), |
238 | 238 | array( |
239 | 239 | 'course_id' => $course->getId(), |
240 | 240 | 'user_id' => $this->getUser()->getId(), |