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/maps.php | |
parent | fdd379c949056fb3a2198039e452f6aae600ef35 (diff) |
Move imaegs to assets folder
Diffstat (limited to 'html/pages/maps.php')
-rw-r--r-- | html/pages/maps.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/pages/maps.php b/html/pages/maps.php index 1959085..bd1106e 100644 --- a/html/pages/maps.php +++ b/html/pages/maps.php @@ -7,7 +7,7 @@ function InvertSort($curr_field, $filter, $sort) { function SortPic($curr_field, $filter, $sort) {
if ($curr_field != $filter) return;
- $fname = 'images/s_'. strtolower($sort) .'.png';
+ $fname = 'assets/images/s_'. strtolower($sort) .'.png';
if (!file_exists($fname)) return;
return(' <img src="'. $fname .'" border="0" width="11" height="9" alt="" class="tooltip" title="('.strtolower($sort).'ending)">');
}
|