diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2007-09-03 09:43:39 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2007-09-03 09:43:39 +0100 |
| commit | c23a8db9eac4a7738b1742a10c3959865859147b (patch) | |
| tree | 370a2165c408c7dd57ccf59efc090deae04fb7e0 | |
| parent | 571dad821884ddd391eca4bf551bb7b604f0e322 (diff) | |
fix logout links short tag issue (closes #149)
| -rw-r--r-- | prefs.php | 2 | ||||
| -rw-r--r-- | tt-rss.php | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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"/> diff --git a/tt-rss.php b/tt-rss.php index 01765c517..3144c89ff 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -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!" |