aboutsummaryrefslogtreecommitdiffstats
path: root/picture.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--picture.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/picture.php b/picture.php
index ca9c01e9f..bbb806cd9 100644
--- a/picture.php
+++ b/picture.php
@@ -244,13 +244,16 @@ DELETE FROM '.COMMENTS_TABLE.'
}
// incrementation of the number of hits, we do this only if no action
-$query = '
+if (trigger_event('allow_increment_element_hit_count', !isset($_POST['content']) ) )
+{
+ $query = '
UPDATE
'.IMAGES_TABLE.'
SET hit = hit+1
WHERE id = '.$page['image_id'].'
;';
-pwg_query($query);
+ pwg_query($query);
+}
//---------------------------------------------------------- related categories
$query = '