diff options
-rw-r--r-- | images/loading.gif (renamed from loading.gif) | bin | 1582 -> 1582 bytes | |||
-rw-r--r-- | images/rss.gif (renamed from rss.gif) | bin | 401 -> 401 bytes | |||
-rw-r--r-- | jsScuttle.php | 4 | ||||
-rw-r--r-- | templates/bookmarks.tpl.php | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/loading.gif b/images/loading.gif Binary files differBinary files differindex 859126e..859126e 100644 --- a/loading.gif +++ b/images/loading.gif diff --git a/jsScuttle.php b/jsScuttle.php index d802b90..53356aa 100644 --- a/jsScuttle.php +++ b/jsScuttle.php @@ -62,7 +62,7 @@ function isAvailable(input, response){ username = username.trim(); var availability = document.getElementById("availability"); if (username != '') { - usernameField.style.backgroundImage = 'url(<?php echo $root; ?>loading.gif)'; + usernameField.style.backgroundImage = 'url(<?php echo $root; ?>images/loading.gif)'; if (response != '') { usernameField.style.backgroundImage = 'none'; if (response == 'true') { @@ -92,7 +92,7 @@ function useAddress(ele) { function getTitle(input, response){ var title = document.getElementById('titleField'); if (title.value == '') { - title.style.backgroundImage = 'url(<?php echo $root; ?>loading.gif)'; + title.style.backgroundImage = 'url(<?php echo $root; ?>images/loading.gif)'; if (response != null) { title.style.backgroundImage = 'none'; title.value = response; diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index ae3e08b..27dfb6e 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -257,7 +257,7 @@ window.onload = playerLoad; $brss = ''; $size = count($rsschannels); for ($i = 0; $i < $size; $i++) { - $brss = '<a style="background:#FFFFFF" href="'. $rsschannels[$i][1] .'" title="'. $rsschannels[$i][0] .'"><img src="'. $GLOBALS['root'] .'rss.gif" width="16" height="16" alt="'. $rsschannels[$i][0] .'" /></a>'; + $brss = '<a style="background:#FFFFFF" href="'. $rsschannels[$i][1] .'" title="'. $rsschannels[$i][0] .'"><img src="'. $GLOBALS['root'] .'images/rss.gif" width="16" height="16" alt="'. $rsschannels[$i][0] .'" /></a>'; } echo '<p class="paging">'. $bfirst .'<span> / </span>'. $bprev .'<span> / </span>'. $bnext .'<span> / </span>'. $blast .'<span> / </span>'. sprintf(T_('Page %d of %d'), $page, $totalpages) ." ". $brss ." </p>\n"; |