]> git.mjollnir.org Git - moodle.git/commitdiff
sso MDL-19799 Added set_url call
authorsamhemelryk <samhemelryk>
Fri, 16 Oct 2009 03:23:42 +0000 (03:23 +0000)
committersamhemelryk <samhemelryk>
Fri, 16 Oct 2009 03:23:42 +0000 (03:23 +0000)
sso/hive/expired.php

index 1079173b193d3b73decfecc2eb9d3d0a246b1fec..d19cd02b3f56c2b63141c1f4c40930cb5c08048e 100644 (file)
@@ -1,4 +1,4 @@
-<?php  // $Id$
+<?php
        // expired.php - called by hive when the session has expired.
 
     require('../../config.php');
@@ -9,6 +9,7 @@
 
     //MW theres no easy way to log in seamlessly. We need the users unhashed password.
     // It's a security risk to carry that in $SESSION so we put up login form.
+    $PAGE->set_url(new moodle_url($CFG->wwwroot.'/sso/hive/expired.php'));
     echo $OUTPUT->header();
     echo $OUTPUT->notification('Your session has expired. Please log in again.'); 
 ?>