summaryrefslogtreecommitdiff
path: root/tt-rss.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-14 19:02:45 +0300
committerAndrew Dolgov <[email protected]>2010-01-14 19:02:45 +0300
commite982360967a7fccb6dd7f52bdee90588846e8cd5 (patch)
tree9ffbdca21358ecbd4ac57de9436f542537ac1ad0 /tt-rss.php
parent48cdacecb5c448bc64d9a231de34eb118a34d4f2 (diff)
do not require themed images to be overridden
Diffstat (limited to 'tt-rss.php')
-rw-r--r--tt-rss.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/tt-rss.php b/tt-rss.php
index 9fa3da1d8..9d4305fe1 100644
--- a/tt-rss.php
+++ b/tt-rss.php
@@ -159,7 +159,7 @@
</div>
- <img src="<?php echo $user_theme ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
+ <img src="<?php echo theme_image($link, 'images/ttrss_logo.png') ?>" alt="Tiny Tiny RSS"/>
</div>
<div id="feeds-holder">
@@ -240,7 +240,8 @@
<div id="resize-grabber"
onmouseover="enable_resize(true)" onmouseout="enable_resize(false)"
title="<?php echo __('Drag me to resize panels') ?>">
- <img src="<?php echo $user_theme ?>images/resize_handle_horiz.png" id="resize-handle"
+ <img src="<?php echo theme_image($link,
+ 'images/resize_handle_horiz.png') ?>" id="resize-handle"
onmouseover="enable_resize(true)" onmouseout="enable_resize(false)"
alt=""/>
</div>