summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJehan-Guillaume de Rorthais2013-11-11 21:53:41 +0000
committerJehan-Guillaume de Rorthais2013-11-11 21:55:53 +0000
commit159714dd6a38d33259a6f68f444406cea6126e77 (patch)
treed280b747d980c43469bf76ff18b3b46b0a2cc88d
parent2ba83ec2197e340df9360228adf42d00a96a79f5 (diff)
Fix path to column sort marker icons to support themes
-rw-r--r--display.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/display.php b/display.php
index c013da04..e8a117ec 100644
--- a/display.php
+++ b/display.php
@@ -324,8 +324,8 @@
, $misc->printVal($finfo->name);
if($_REQUEST['sortkey'] == ($j + 1)) {
if($_REQUEST['sortdir'] == 'asc')
- echo '<img src="images/themes/default/RaiseArgument.png" alt="">';
- else echo '<img src="images/themes/default/LowerArgument.png" alt="">';
+ echo '<img src="'. $misc->icon('RaiseArgument') .'" alt="">';
+ else echo '<img src="'. $misc->icon('LowerArgument') .'" alt="">';
}
echo "</a></th>\n";
}