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'])) ? "' . $lang['STOP_WATCHING_TOPIC'] . '' : ''; + $s_watching_topic_img = isset($images['topic_un_watch']) ? "' . $lang['STOP_WATCHING_TOPIC'] . '' : ''; } else { $s_watching_topic = "' . $lang['START_WATCHING_TOPIC'] . ''; - $s_watching_topic_img = (isset($images['topic_watch'])) ? "' . $lang['START_WATCHING_TOPIC'] . '' : ''; + $s_watching_topic_img = isset($images['topic_watch']) ? "' . $lang['START_WATCHING_TOPIC'] . '' : ''; } }