diff options
author | nikrou <nikrou@piwigo.org> | 2010-06-24 18:49:48 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-06-24 18:49:48 +0000 |
commit | 3a57b93baae00f91de049844232dbdbe7aead10c (patch) | |
tree | cb8eb0a8eba0663387fc8830d5befe3dc72c7f95 /admin/element_set.php | |
parent | 5f925e150a273c17cd2f646b1fa6f2ff78d8e61c (diff) |
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
Diffstat (limited to '')
-rw-r--r-- | admin/element_set.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/element_set.php b/admin/element_set.php index c19272084..58113861d 100644 --- a/admin/element_set.php +++ b/admin/element_set.php @@ -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.' |