' . '.mode_show #dokuwiki__aside { width: ' . $sidebar_width . '; }' . DOKU_LF . '.mode_show #dokuwiki__content { margin-left: -' . $sidebar_width . '; }' . DOKU_LF . '.mode_show #dokuwiki__content .pad { margin-left: ' . $sidebar_width . '; }' . DOKU_LF . '#dokuwiki__site .wrapper { max-width: ' . $site_width . '; }' . DOKU_LF . ''; echo $result; break; } } } /** * Print info if the user is logged in * and show full name in that case * * SB: removed the 'Logged in as:' message; too much fluff * * @author Andreas Gohr * @author Symon Bent * @return bool */ function _tpl_userinfo() { global $INFO; if(isset($_SERVER['REMOTE_USER'])) { print hsc($INFO['userinfo']['name']).' ('.hsc($_SERVER['REMOTE_USER']).')'; return true; } return false; }