summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--prefs.php2
-rw-r--r--tt-rss.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/prefs.php b/prefs.php
index 1c81b4703..01e7b816d 100644
--- a/prefs.php
+++ b/prefs.php
@@ -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!"