diff options
author | Michael Neves | 2012-06-26 17:16:56 +0200 |
---|---|---|
committer | Michael Neves | 2012-06-26 17:16:56 +0200 |
commit | 9f70683f2fc5cb2a54d37b7bf8fe2efa27be7427 (patch) | |
tree | aad51129a047a8fffa9ddf8cddc47c5803ef6348 | |
parent | relative urls removed from vesamenu (diff) | |
download | pbs2-9f70683f2fc5cb2a54d37b7bf8fe2efa27be7427.tar.gz pbs2-9f70683f2fc5cb2a54d37b7bf8fe2efa27be7427.tar.xz pbs2-9f70683f2fc5cb2a54d37b7bf8fe2efa27be7427.zip |
relative urls removed from vesamenu
-rw-r--r-- | application/modules/ipxe/controllers/AuthController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/modules/ipxe/controllers/AuthController.php b/application/modules/ipxe/controllers/AuthController.php index 4a5b501..b56982f 100644 --- a/application/modules/ipxe/controllers/AuthController.php +++ b/application/modules/ipxe/controllers/AuthController.php @@ -109,7 +109,7 @@ class Ipxe_AuthController extends Zend_Controller_Action { $result .= "clear password\n"; $result .= "login\n"; $result .= "isset \${username} || set username null\n"; - $result .= "chain ".$this->httpmode."://\${username:uristring}:\${password:uristring}@".$_SERVER['HTTP_HOST']."/ipxe/auth/login/alpha/".$alpha."\n"; + $result .= "set filename ".$this->httpmode."://\${username:uristring}:\${password:uristring}@".$_SERVER['HTTP_HOST']."/ipxe/auth/login/alpha/".$alpha."\n"; header("Content-Length: ".(strlen($result))); echo $result; exit; |