From b58fea9f2c3b8c084dc90aef527d3e87b012df35 Mon Sep 17 00:00:00 2001 From: rvelices Date: Fri, 28 Oct 2011 19:35:45 +0000 Subject: feature 2477: remove unnecesary admin css rules / html elements git-svn-id: http://piwigo.org/svn/trunk@12528 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/rating.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'admin/rating.php') diff --git a/admin/rating.php b/admin/rating.php index a500ecb7d..2f0959023 100644 --- a/admin/rating.php +++ b/admin/rating.php @@ -131,7 +131,7 @@ $template->assign( $available_order_by= array( array(l10n('Rate date'), 'recently_rated DESC'), - array(l10n('Rating score'), 'score DESC'), + array(l10n('Rating score'), 'score DESC'), array(l10n('Average rate'), 'avg_rates DESC'), array(l10n('Number of rates'), 'nb_rates DESC'), array(l10n('Sum of rates'), 'sum_rates DESC'), @@ -162,14 +162,14 @@ $template->assign('user_options_selected', array(@$_GET['users']) ); $query = ' SELECT i.id, - i.path, - i.file, - i.tn_ext, - i.rating_score AS score, - MAX(r.date) AS recently_rated, - ROUND(AVG(r.rate),2) AS avg_rates, - COUNT(r.rate) AS nb_rates, - SUM(r.rate) AS sum_rates + i.path, + i.file, + i.tn_ext, + i.rating_score AS score, + MAX(r.date) AS recently_rated, + ROUND(AVG(r.rate),2) AS avg_rates, + COUNT(r.rate) AS nb_rates, + SUM(r.rate) AS sum_rates FROM '.RATE_TABLE.' AS r LEFT JOIN '.IMAGES_TABLE.' AS i ON r.element_id = i.id WHERE 1 = 1 ' . $page['user_filter'] . ' @@ -245,7 +245,7 @@ ORDER BY date DESC;'; $tpl_image['rates'][] = array( - 'DATE' => format_date($row['date']), + 'DATE' => /*format_date*/($row['date']), 'RATE' => $row['rate'], 'USER' => $user_rate, 'U_DELETE' => $url_del -- cgit v1.2.3