fix logout links short tag issue (closes #149)

This commit is contained in:
Andrew Dolgov 2007-09-03 09:43:39 +01:00
parent 571dad8218
commit c23a8db9ea
2 changed files with 2 additions and 2 deletions

View File

@ -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"/>

View File

@ -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!"