diff --git a/boot.php b/boot.php index b94000b607..b8b0dc0593 100644 --- a/boot.php +++ b/boot.php @@ -4,7 +4,7 @@ set_time_limit(0); ini_set('pcre.backtrack_limit', 250000); -define ( 'FRIENDIKA_VERSION', '2.2.1006' ); +define ( 'FRIENDIKA_VERSION', '2.2.1007' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); define ( 'DB_UPDATE_VERSION', 1063 ); diff --git a/include/items.php b/include/items.php index a5d430aa22..db500fda2a 100644 --- a/include/items.php +++ b/include/items.php @@ -1334,6 +1334,17 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee $datarray['author-avatar'] = $contact['thumb']; } + if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) { + $ev = bbtoevent($datarray['body']); + if(x($ev,'desc') && x($ev,'start')) { + $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", + dbesc($item_id), + intval($importer['uid']) + ); + // import/update event + + } + } $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($item_id), intval($importer['uid']) @@ -1751,4 +1762,5 @@ function item_expire($uid,$days) { proc_run('php',"include/notifier.php","expire","$uid"); -} \ No newline at end of file +} + diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 68edd02b94..8928148042 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2459,6 +2459,13 @@ a.mail-list-link { position: absolute; left: 0px; top: 0px; + opacity: 0.3; + filter:alpha(opacity=30); +} + +#lang-select-icon:hover { + opacity: 1; + filter:alpha(opacity=100); }