aboutsummaryrefslogtreecommitdiffstats
path: root/include/event.php
diff options
context:
space:
mode:
authorMichael Johnston <michaelgeorgejohnston@gmail.com>2013-03-19 00:29:59 -0400
committerMichael Johnston <michaelgeorgejohnston@gmail.com>2013-03-21 21:07:38 -0400
commitfea2f9ac9be03684fc53dd488553c036b988d7eb (patch)
tree44616cc22ba6c76770bf4ee926806a0121c4d828 /include/event.php
parentc3590f6454f856b7890dee7dc2178cef3f09cb11 (diff)
downloadvolse-hubzilla-fea2f9ac9be03684fc53dd488553c036b988d7eb.tar.gz
volse-hubzilla-fea2f9ac9be03684fc53dd488553c036b988d7eb.tar.bz2
volse-hubzilla-fea2f9ac9be03684fc53dd488553c036b988d7eb.zip
small fixes for events
Diffstat (limited to 'include/event.php')
-rw-r--r--include/event.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/event.php b/include/event.php
index a178c717a..58ab90e90 100644
--- a/include/event.php
+++ b/include/event.php
@@ -169,6 +169,8 @@ function event_store($arr) {
return $r[0]['id'];
}
+ $event_hash = $r[0]['event_hash'];
+
// The event changed. Update it.
$r = q("UPDATE `event` SET
@@ -205,7 +207,7 @@ function event_store($arr) {
);
$r = q("SELECT * FROM item left join xchan on author_xchan = xchan_hash WHERE resource_id = '%s' AND resource_type = 'event' and uid = %d LIMIT 1",
- intval($r[0]['event_hash']),
+ dbesc($event_hash),
intval($arr['uid'])
);