Skip to content
Snippets Groups Projects
Commit ee6517f1 authored by Christopher Smith's avatar Christopher Smith
Browse files

Merge pull request #1356 from mariusvw/inc-html

Fixed undefined error in html_denied()
parents 8e72a512 c2243b78
No related branches found
No related tags found
No related merge requests found
...@@ -74,7 +74,7 @@ function html_login(){ ...@@ -74,7 +74,7 @@ function html_login(){
function html_denied() { function html_denied() {
print p_locale_xhtml('denied'); print p_locale_xhtml('denied');
if(!$_SERVER['REMOTE_USER']){ if(empty($_SERVER['REMOTE_USER'])){
html_login(); html_login();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment