From ee4ad6d277ec74d4373d6ea3bb1833196d1d2b27 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Thu, 12 Jun 2014 16:02:47 +0000 Subject: [PATCH] fixed a tag comparison bug in file_home.php again --- codepot/src/codepot/views/file_home.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codepot/src/codepot/views/file_home.php b/codepot/src/codepot/views/file_home.php index 27b2e55a..ce2dddf8 100644 --- a/codepot/src/codepot/views/file_home.php +++ b/codepot/src/codepot/views/file_home.php @@ -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)