Amend bug 1559. standard deviation was not removed in some places.

So, sqlite crashed because std function has been removed.

git-svn-id: http://piwigo.org/svn/trunk@6125 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou
2010-05-08 18:43:50 +00:00
parent f51c9412ba
commit a34af69677
4 changed files with 1 additions and 7 deletions
-1
View File
@@ -676,7 +676,6 @@ SELECT id, name, permalink, uppercats, global_rank, commentable
$query = '
SELECT COUNT(rate) AS count
, ROUND(AVG(rate),2) AS average
, ROUND(STD(rate),2) AS stdev
FROM '.RATE_TABLE.'
WHERE element_id = '.$image_row['id'].'
;';