| 93 | | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=file&order=<?=($_GET['order'] == "asc" ? "desc" : "asc")?>">Filename</a> <? if($_GET['sort'] == "file") echo ($_GET['order'] == "asc" ? "↓" : "↑")?></th> |
|---|
| 94 | | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=mtime&order=<?=($_GET['order'] == "asc" ? "desc" : "asc")?>">MTime</a> <? if($_GET['sort'] == "mtime") echo ($_GET['order'] == "asc" ? "↓" : "↑")?></th> |
|---|
| 95 | | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=size&order=<?=($_GET['order'] == "asc" ? "desc" : "asc")?>">Size</a> <? if($_GET['sort'] == "size") echo ($_GET['order'] == "asc" ? "↓" : "↑")?></th> |
|---|
| 96 | | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=reloads&order=<?=($_GET['order'] == "asc" ? "desc" : "asc")?>">Reloads</a> <? if($_GET['sort'] == "reloads") echo ($_GET['order'] == "asc" ? "↓" : "↑")?></th> |
|---|
| 97 | | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=hits&order=<?=($_GET['order'] == "asc" ? "desc" : "asc")?>">Hits</a> <? if($_GET['sort'] == "hits") echo ($_GET['order'] == "asc" ? "↓" : "↑")?></th> |
|---|
| | 116 | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=file&order=<?=($order == "asc" ? "desc" : "asc")?>">Filename</a> <? if($sortby == "file") echo ($order == "asc" ? "↓" : "↑")?></th> |
|---|
| | 117 | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=mtime&order=<?=($order == "asc" ? "desc" : "asc")?>">MTime</a> <? if($sortby == "mtime") echo ($order == "asc" ? "↓" : "↑")?></th> |
|---|
| | 118 | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=size&order=<?=($order == "asc" ? "desc" : "asc")?>">Size</a> <? if($sortby == "size") echo ($order == "asc" ? "↓" : "↑")?></th> |
|---|
| | 119 | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=reloads&order=<?=($order == "asc" ? "desc" : "asc")?>">Reloads</a> <? if($sortby == "reloads") echo ($order == "asc" ? "↓" : "↑")?></th> |
|---|
| | 120 | <th><a href="<?=$_SERVER['PHP_SELF']?>?sort=hits&order=<?=($order == "asc" ? "desc" : "asc")?>">Hits</a> <? if($sortby == "hits") echo ($order == "asc" ? "↓" : "↑")?></th> |
|---|