fix logout links short tag issue (closes #149)

master
Andrew Dolgov 17 years ago
parent 571dad8218
commit c23a8db9ea

@ -88,7 +88,7 @@ window.onload = init;
<?php if (!SINGLE_USER_MODE) { ?>
<div style="float : right">
<?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b>
(<a href="logout.php"><?= __('Logout') ?></a>)
(<a href="logout.php"><?php echo __('Logout') ?></a>)
</div>
<?php } ?>
<img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>

@ -106,7 +106,7 @@ window.onload = init;
<div style="float : right">
<?php if (!SINGLE_USER_MODE) { ?>
<?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b>
(<a href="logout.php"><?= __('Logout') ?></a>)
(<a href="logout.php"><?php echo __('Logout') ?></a>)
<?php } ?>
<img id="newVersionIcon" style="display:none;" onclick="javascript:explainError(2)"
src="images/new_version.png" title="New version is available!"

Loading…
Cancel
Save