Skip to content

Commit

Permalink
rss MDL-24509 added call to require_login()
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Davis committed Oct 4, 2010
1 parent c637291 commit 52cede7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions rss/file.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,22 @@
$user = get_complete_user_data('id', $userid);
session_set_user($user); //for login and capability checks


// Check the context actually exists
$context = get_context_instance_by_id($contextid);
list($context, $course, $cm) = get_context_info_array($contextid);

if (!$context) {
rss_error();
}
$PAGE->set_context($context);

try {
$autologinguest = true;
$setwantsurltome = true;
$preventredirect = true;
require_login($course, $autologinguest, $cm, $setwantsurltome, $preventredirect);
} catch (Exception $e) {
rss_error('rsserrorauth');
}

// Work out which component in Moodle we want (from the frankenstyle name)
$componentdir = get_component_directory($componentname);
Expand Down

0 comments on commit 52cede7

Please sign in to comment.