diff options
author | mistic100 <mistic@piwigo.org> | 2014-06-05 07:25:28 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2014-06-05 07:25:28 +0000 |
commit | 55619222fbf0032b94630c9a86e793476040db95 (patch) | |
tree | f527458013b46a788db08da1b0e40afd931cce2e /picture.php | |
parent | ea6d9ff40f0dcc0d5048d38f0f74f527079b056f (diff) |
don't update images.lastmodified field when incrementing hits count
git-svn-id: http://piwigo.org/svn/trunk@28640 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'picture.php')
-rw-r--r-- | picture.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/picture.php b/picture.php index cea4adeae..abca13f48 100644 --- a/picture.php +++ b/picture.php @@ -436,10 +436,11 @@ else // don't increment if adding a comment if (trigger_change('allow_increment_element_hit_count', $inc_hit_count, $page['image_id'] ) ) { + // avoiding auto update of "lastmodified" field $query = ' UPDATE '.IMAGES_TABLE.' - SET hit = hit+1 + SET hit = hit+1, lastmodified = lastmodified WHERE id = '.$page['image_id'].' ;'; pwg_query($query); |