summaryrefslogtreecommitdiff
path: root/lib/tpl/dokuwiki/tpl_header.php
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2012-03-23 23:58:44 +0000
committerAnika Henke <anika@selfthinker.org>2012-03-23 23:58:44 +0000
commit57fc5eddedf96b52f76700b70686359a594b2031 (patch)
tree7fdd8b4fdb447f1836a72d2edbd603a889e385bc /lib/tpl/dokuwiki/tpl_header.php
parenta4ffa98be918b511b2a80d03d5ce147dc1cef0b7 (diff)
downloadrpg-57fc5eddedf96b52f76700b70686359a594b2031.tar.gz
rpg-57fc5eddedf96b52f76700b70686359a594b2031.tar.bz2
removed a few comments in new template files
Diffstat (limited to 'lib/tpl/dokuwiki/tpl_header.php')
-rw-r--r--lib/tpl/dokuwiki/tpl_header.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/tpl/dokuwiki/tpl_header.php b/lib/tpl/dokuwiki/tpl_header.php
index 91d8876b9..9a391aedc 100644
--- a/lib/tpl/dokuwiki/tpl_header.php
+++ b/lib/tpl/dokuwiki/tpl_header.php
@@ -1,7 +1,7 @@
<!-- ********** HEADER ********** -->
<div id="dokuwiki__header"><div class="pad group">
- <?php html_msgarea() /* occasional error and info messages on top of the page */ ?>
+ <?php html_msgarea() ?>
<?php _tpl_include('header.html') ?>
<div class="headings group">
@@ -12,7 +12,7 @@
<h1><?php
// get logo either out of the template images folder or data/media folder
$logoSize = array();
- $logo = tpl_getMediaFile(array(':wiki:logo.png','images/logo.png'),false,$logoSize);
+ $logo = tpl_getMediaFile(array(':wiki:logo.png', 'images/logo.png'), false, $logoSize);
// display logo and wiki title in a link to the home page
tpl_link(
@@ -32,8 +32,6 @@
<div id="dokuwiki__usertools">
<h3 class="a11y"><?php echo $lang['user_tools']; ?></h3>
<ul>
- <?php /* the optional second parameter of tpl_action() switches between a link and a button,
- e.g. a button inside a <li> would be: tpl_action('edit',0,'li') */
if ($_SERVER['REMOTE_USER']) {
echo '<li class="user">';
tpl_userinfo(); /* 'Logged in as ...' */
@@ -52,7 +50,6 @@
<div id="dokuwiki__sitetools">
<h3 class="a11y"><?php echo $lang['site_tools']; ?></h3>
<?php tpl_searchform(); ?>
- <?php /* all the tools in one dropdown (good for mobile view): */ ?>
<div class="mobileTools">
<?php tpl_actiondropdown($lang['tools']); ?>
</div>