diff options
author | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-01-10 20:08:33 +0100 |
---|---|---|
committer | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-01-10 20:08:33 +0100 |
commit | 861e3230f0154e6a5942698adedf18d5eb0e0b8a (patch) | |
tree | 904f4efa242804c12f6989bd825b93534ef0a599 /html/pages/players_info.php | |
parent | fdd379c949056fb3a2198039e452f6aae600ef35 (diff) |
Move imaegs to assets folder
Diffstat (limited to 'html/pages/players_info.php')
-rwxr-xr-x | html/pages/players_info.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/pages/players_info.php b/html/pages/players_info.php index a23f4fd..1ddb631 100755 --- a/html/pages/players_info.php +++ b/html/pages/players_info.php @@ -87,9 +87,9 @@ echo ' <th class="heading" colspan="12" align="center">Career Summary for '.htmlentities($playername).' ';
if (PlayerOnWatchlist($pid)) {
- echo '<a href="?p=pinfo&pid='.$pid.'&togglewatch=1&noheader=1"><img src="images/unwatch.png" border="0" class="tooltip" title="You are watching this player. Click to remove from your watchlist."></a>';
+ echo '<a href="?p=pinfo&pid='.$pid.'&togglewatch=1&noheader=1"><img src="assets/images/unwatch.png" border="0" class="tooltip" title="You are watching this player. Click to remove from your watchlist."></a>';
} else {
- echo '<a href="?p=pinfo&pid='.$pid.'&togglewatch=1&noheader=1"><img src="images/watch.png" border="0" class="tooltip" title="Click to add this player to your watchlist."></a>';
+ echo '<a href="?p=pinfo&pid='.$pid.'&togglewatch=1&noheader=1"><img src="assets/images/watch.png" border="0" class="tooltip" title="Click to add this player to your watchlist."></a>';
}
echo '</th>
|