mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 01:42:29 +02:00
Fix missing argument for pwg_db_changes()
git-svn-id: http://piwigo.org/svn/trunk@5930 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -900,7 +900,7 @@ UPDATE '.IMAGES_TABLE.'
|
||||
SET level='.(int)$params['level'].'
|
||||
WHERE id IN ('.implode(',',$params['image_id']).')';
|
||||
$result = pwg_query($query);
|
||||
$affected_rows = pwg_db_changes();
|
||||
$affected_rows = pwg_db_changes($result);
|
||||
if ($affected_rows)
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
||||
|
||||
Reference in New Issue
Block a user