From cc259b2da2d747956bd8e917930160357f3f8503 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Wed, 30 Oct 2013 04:34:39 +0000 Subject: [PATCH] website: fix another warning that clutters the logs --- website/code/desktop-download.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/code/desktop-download.php b/website/code/desktop-download.php index 6dab80da..5f1046e1 100644 --- a/website/code/desktop-download.php +++ b/website/code/desktop-download.php @@ -36,7 +36,7 @@ function popularity_cmp ( $a, $b ) if ( @$a['popularity'] == @$b['popularity'] ) return 0; // sort from highest to lowest - return ($a['popularity'] > $b['popularity']) ? -1 : 1; + return (@$a['popularity'] > @$b['popularity']) ? -1 : 1; }