aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-23 18:25:33 -0700
committerFriendika <info@friendika.com>2011-06-23 18:25:33 -0700
commita15bd91d1733e8198169a1a492f0268691b7152a (patch)
treedd730e04ba33a0015eb3c94effeb798aaac8689c /include
parent38cf37d3c3a4bc9873aa12eed5167b356282385f (diff)
downloadvolse-hubzilla-a15bd91d1733e8198169a1a492f0268691b7152a.tar.gz
volse-hubzilla-a15bd91d1733e8198169a1a492f0268691b7152a.tar.bz2
volse-hubzilla-a15bd91d1733e8198169a1a492f0268691b7152a.zip
don't update an event that hasn't changed.
Diffstat (limited to 'include')
-rw-r--r--include/event.php16
-rw-r--r--include/items.php1
2 files changed, 17 insertions, 0 deletions
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',
diff --git a/include/items.php b/include/items.php
index 2a934af3a..47a38d5e5 100644
--- a/include/items.php
+++ b/include/items.php
@@ -1347,6 +1347,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
if(x($ev,'desc') && x($ev,'start')) {
$ev['uid'] = $importer['uid'];
$ev['uri'] = $item_id;
+ $ev['edited'] = $datarray['edited'];
if(is_array($contact))
$ev['cid'] = $contact['id'];