diff --git a/viewtopic.php b/viewtopic.php
index a2642974f..9d853f568 100644
--- a/viewtopic.php
+++ b/viewtopic.php
@@ -424,10 +424,10 @@ $s_watching_topic = $s_watching_topic_img = '';
if ($can_watch_topic) {
if ($is_watching_topic) {
$s_watching_topic = "' . $lang['STOP_WATCHING_TOPIC'] . '';
- $s_watching_topic_img = (isset($images['topic_un_watch'])) ? "
' : '';
+ $s_watching_topic_img = isset($images['topic_un_watch']) ? "
' : '';
} else {
$s_watching_topic = "' . $lang['START_WATCHING_TOPIC'] . '';
- $s_watching_topic_img = (isset($images['topic_watch'])) ? "
' : '';
+ $s_watching_topic_img = isset($images['topic_watch']) ? "
' : '';
}
}