diff options
| author | Jehan-Guillaume de Rorthais | 2013-11-11 21:53:41 +0000 |
|---|---|---|
| committer | Jehan-Guillaume de Rorthais | 2013-11-11 21:55:53 +0000 |
| commit | 159714dd6a38d33259a6f68f444406cea6126e77 (patch) | |
| tree | d280b747d980c43469bf76ff18b3b46b0a2cc88d | |
| parent | 2ba83ec2197e340df9360228adf42d00a96a79f5 (diff) | |
Fix path to column sort marker icons to support themes
| -rw-r--r-- | display.php | 4 |
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"; } |
