From a15bd91d1733e8198169a1a492f0268691b7152a Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 23 Jun 2011 18:25:33 -0700 Subject: don't update an event that hasn't changed. --- include/event.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'include/event.php') diff --git a/include/event.php b/include/event.php index 8078a9a5e..f79266e33 100644 --- a/include/event.php +++ b/include/event.php @@ -213,6 +213,22 @@ function event_store($arr) { if($arr['id']) { + + // has the event actually changed? + + $r = q("SELECT * FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($arr['id']), + intval($arr['uid']) + ); + if((! count($r)) || ($r[0]['edited'] === $arr['edited'])) { + $r = q("SELECT * FROM `item` WHERE `event-id` = %d AND `uid` = %d LIMIT 1", + intval($arr['id']), + intval($arr['uid']) + ); + return((count($r)) ? $r[0]['id'] : 0); + } + + $r = q("UPDATE `event` SET `edited` = '%s', `start` = '%s', -- cgit v1.2.3