Bug 1739 fixed : Recent pictures page returns database error
merge from trunk git-svn-id: http://piwigo.org/svn/branches/2.1@6600 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
5f925e150a
commit
3a57b93baa
1 changed files with 2 additions and 1 deletions
|
@ -195,7 +195,8 @@ elseif ('recent'== $_GET['cat'])
|
|||
$page['title'] = l10n('Recent pictures');
|
||||
$query = 'SELECT MAX(date_available) AS date
|
||||
FROM '.IMAGES_TABLE;
|
||||
if ($row = pwg_db_fetch_assoc( pwg_query($query) ) )
|
||||
$row = pwg_db_fetch_assoc(pwg_query($query));
|
||||
if (!empty($row['date']))
|
||||
{
|
||||
$query = 'SELECT id
|
||||
FROM '.IMAGES_TABLE.'
|
||||
|
|
Loading…
Add table
Reference in a new issue