mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-08 09:43:01 +02:00
- function mysql_query replaced by pwg_query : the same with debugging
features - by default, DEBUG is set to 0 (off) git-svn-id: http://piwigo.org/svn/trunk@587 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -47,7 +47,7 @@ SELECT DISTINCT(id),file,date_available,category_id
|
||||
LIMIT '.$page['start'].','.$page['nb_image_page'].'
|
||||
;';
|
||||
// echo '<pre>'.$query.'</pre>';
|
||||
$result = mysql_query($query);
|
||||
$result = pwg_query($query);
|
||||
|
||||
// template thumbnail initialization
|
||||
if ( mysql_num_rows($result) > 0 )
|
||||
@@ -128,7 +128,7 @@ SELECT COUNT(*) AS nb_comments
|
||||
WHERE image_id = '.$row['id'].'
|
||||
AND validated = \'true\'
|
||||
;';
|
||||
$row = mysql_fetch_array(mysql_query($query));
|
||||
$row = mysql_fetch_array(pwg_query($query));
|
||||
$template->assign_block_vars(
|
||||
'thumbnails.line.thumbnail.nb_comments',
|
||||
array('NB_COMMENTS'=>$row['nb_comments']));
|
||||
|
||||
Reference in New Issue
Block a user