mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 01:42:29 +02:00
fixes only:
- some searches returned bad array for page['items'] (resulting in php warnings and sometimes mysql fatal error) still existing in branch 2.0 - mysql fatal error in admin maintenance - php warn in plugins_list.php - fix check on function param in admin/include/functions.php git-svn-id: http://piwigo.org/svn/trunk@5691 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -252,7 +252,7 @@ SELECT DISTINCT(id)
|
||||
}
|
||||
else
|
||||
{
|
||||
$items = array_intersect($items, $tag_items);
|
||||
$items = array_values( array_intersect($items, $tag_items) );
|
||||
}
|
||||
break;
|
||||
case 'OR':
|
||||
|
||||
Reference in New Issue
Block a user