There is an incorrect use of a moodle_url object in weblib line 2272:
$action = new popup_action('click', $link->url, 'ratingscales', array('height' => 400, 'width' => 500));
|
Should be
$action = new popup_action('click', $link, 'ratingscales', array('height' => 400, 'width' => 500));
|
I'll commit a fix for this shortly.