aboutsummaryrefslogtreecommitdiffstats
path: root/include/event.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-16 03:18:32 -0800
committerfriendica <info@friendica.com>2013-01-16 03:18:32 -0800
commitaf066d7383edfc9c47ceb64076ec38efd6f39edb (patch)
treeb97da0065416bdabf5f8948652f6d5757f2f197b /include/event.php
parent4fd833b9530c93b71dcb2b1587a4b3c5869915ce (diff)
downloadvolse-hubzilla-af066d7383edfc9c47ceb64076ec38efd6f39edb.tar.gz
volse-hubzilla-af066d7383edfc9c47ceb64076ec38efd6f39edb.tar.bz2
volse-hubzilla-af066d7383edfc9c47ceb64076ec38efd6f39edb.zip
mopping up the events issues so I can move on to other stuff
Diffstat (limited to 'include/event.php')
-rw-r--r--include/event.php19
1 files changed, 9 insertions, 10 deletions
diff --git a/include/event.php b/include/event.php
index e5a62ceec..685842fc3 100644
--- a/include/event.php
+++ b/include/event.php
@@ -271,10 +271,6 @@ function event_store($arr) {
intval($arr['uid'])
);
-
-
-// FIXME
-
if($r) {
$obj = json_encode(array(
@@ -324,14 +320,13 @@ function event_store($arr) {
$hash = random_string();
- $r = q("INSERT INTO `event` ( `uid`,`aid`,`event_xchan`,`event_hash`, `message_id`,`created`,`edited`,`start`,`finish`,`summary`, `desc`,`location`,`type`,
+ $r = q("INSERT INTO `event` ( `uid`,`aid`,`event_xchan`,`event_hash`,`created`,`edited`,`start`,`finish`,`summary`, `desc`,`location`,`type`,
`adjust`,`nofinish`,`allow_cid`,`allow_gid`,`deny_cid`,`deny_gid`)
- VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', '%s' ) ",
+ VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', '%s' ) ",
intval($arr['uid']),
intval($arr['account']),
dbesc($arr['event_xchan']),
dbesc($hash),
- dbesc($arr['uri']),
dbesc($arr['created']),
dbesc($arr['edited']),
dbesc($arr['start']),
@@ -350,7 +345,7 @@ function event_store($arr) {
);
$r = q("SELECT * FROM `event` WHERE `event_hash` = '%s' AND `uid` = %d LIMIT 1",
- dbesc($arr['event_hash']),
+ dbesc($hash),
intval($arr['uid'])
);
if(count($r))
@@ -369,6 +364,9 @@ function event_store($arr) {
$item_flags |= ITEM_ORIGIN;
}
+
+ $uri = item_message_id();
+
$private = (($arr['allow_cid'] || $arr['allow_gid'] || $arr['deny_cid'] || $arr['deny_gid']) ? 1 : 0);
if($private)
$item_flags |= ITEM_PRIVATE;
@@ -377,8 +375,9 @@ function event_store($arr) {
$item_arr['uid'] = $arr['uid'];
$item_arr['author_xchan'] = $arr['event_xchan'];
- $item_arr['uri'] = $arr['message_id'];
- $item_arr['parent_uri'] = $arr['message_id'];
+ $item_arr['uri'] = $uri;
+ $item_arr['parent_uri'] = $uri;
+
$item_arr['item_flags'] = $item_flags;
$item_arr['owner_xchan'] = (($wall) ? $z[0]['channel_hash'] : $arr['event_xchan']);