No display on renderers.php

Issue #694 duplicate
Michael Ralaizefa created an issue

On the lines 2847 and 2848 "$this->" is missing. You should change : that => // Calls a local method (render_mycourses) to get list of a user's current courses that they are enrolled on. $courses = render_mycourses(); list($sortedcourses) = render_mycourses();

to this => // Calls a local method (render_mycourses) to get list of a user's current courses that they are enrolled on. $courses = $this->render_mycourses(); list($sortedcourses) = $this->render_mycourses(); Btw, your theme is so great to use : Thanks a lot !!!!

Comments (1)

  1. Log in to comment