fixed a tag comparison bug in file_home.php again

This commit is contained in:
hyung-hwan 2014-06-12 16:02:47 +00:00
parent f6c915d38c
commit ee4ad6d277

View File

@ -76,8 +76,8 @@ else
if ($q != 0) return $q;
}
return ($cx > $cy)? 1:
($cx < $cy)? -1: 0;
return ($cx > $cy)? -1:
($cx < $cy)? 1: 0;
}
function comp_files ($a, $b)