Skip to content

Commit

Permalink
MDL-13401 fixed REQUEST_URI test; merged from MOODLE_19_STABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Apr 25, 2008
1 parent 51f7c05 commit 864dad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth/cas/CAS/CAS.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// hack by Vangelis Haniotakis to handle the absence of $_SERVER['REQUEST_URI'] in IIS
//
if (!$_SERVER['REQUEST_URI']) {
if (!isset($_SERVER['REQUEST_URI'])) {
$_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING'];
}

Expand Down

0 comments on commit 864dad5

Please sign in to comment.