diff options
author | Anika Henke <anika@selfthinker.org> | 2010-11-07 09:55:17 +0000 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2010-11-07 09:55:17 +0000 |
commit | 23b10d5bcbfb9a11561296670425bc22665fb84c (patch) | |
tree | 745e07587c4f3feab0d56b9f9e1ed911b75511cc /inc/template.php | |
parent | f5baf821ee5f6ab5b009bb94aff6f43f686d3329 (diff) | |
parent | 9c1c56fd8f997025e879c7a36f6d3c5022b925ae (diff) | |
download | rpg-23b10d5bcbfb9a11561296670425bc22665fb84c.tar.gz rpg-23b10d5bcbfb9a11561296670425bc22665fb84c.tar.bz2 |
Merge branch 'master' of github.com:splitbrain/dokuwiki
Diffstat (limited to 'inc/template.php')
-rw-r--r-- | inc/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/template.php b/inc/template.php index c2ce130ff..cb98c83d7 100644 --- a/inc/template.php +++ b/inc/template.php @@ -796,7 +796,7 @@ function tpl_userinfo(){ global $lang; global $INFO; if(isset($_SERVER['REMOTE_USER'])){ - print $lang['loggedinas'].': '.$INFO['userinfo']['name'].' ('.$_SERVER['REMOTE_USER'].')'; + print $lang['loggedinas'].': '.hsc($INFO['userinfo']['name']).' ('.hsc($_SERVER['REMOTE_USER']).')'; return true; } return false; |