mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 18:49:21 -07:00
Sorting issue fix
Closing https://github.com/myvesta/vesta/issues/116 Thanks to @jaapmarcus and @hestiacp
This commit is contained in:
parent
74823ca988
commit
543e6b5bc9
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@
|
|||
?>
|
||||
|
||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['USER'][$key] == 1) echo ' l-unit--starred';?>" v_section="user"
|
||||
v_unit_id="<?=$key?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>"
|
||||
v_unit_id="<?=$key?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=strtolower($key)?>"
|
||||
sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<? if($_SESSION['favourites']['USER'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||
<div class="l-unit-toolbar clearfix">
|
||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue