From a62d33dd48cee5326819b6620313869869d9e87a Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 13 Jun 2011 22:28:51 -0700 Subject: [PATCH 1/6] doco --- addon/sniper/sniper.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addon/sniper/sniper.php b/addon/sniper/sniper.php index 79d7daad..8d31e9cd 100644 --- a/addon/sniper/sniper.php +++ b/addon/sniper/sniper.php @@ -1,5 +1,11 @@ Date: Tue, 14 Jun 2011 19:48:37 -0700 Subject: [PATCH 2/6] event calendar links, editing --- boot.php | 2 +- include/event.php | 35 ++++++-- mod/events.php | 136 ++++++++++++++++++++++-------- view/event_form.tpl | 4 + view/theme/duepuntozero/style.css | 6 ++ view/theme/loozah/style.css | 8 ++ 6 files changed, 148 insertions(+), 43 deletions(-) diff --git a/boot.php b/boot.php index 8edc7491..5b7b6048 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.1010' ); +define ( 'FRIENDIKA_VERSION', '2.2.1011' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); define ( 'DB_UPDATE_VERSION', 1063 ); diff --git a/include/event.php b/include/event.php index 2cfc5240..31df86e2 100644 --- a/include/event.php +++ b/include/event.php @@ -190,10 +190,10 @@ function event_store($arr) { $a = get_app(); $arr['created'] = (($arr['created']) ? $arr['created'] : datetime_convert()); - $arr['edited'] = (($arr['edited']) ? $arr['edited'] : datetime_convert()); - $arr['type'] = (($arr['type']) ? $arr['type'] : 'event' ); - $arr['cid'] = ((intval($arr['cid'])) ? intval($arr['cid']) : 0); - $arr['uri'] = (x($arr,'uri') ? $arr['uri'] : item_new_uri($a->get_hostname(),$arr['uid'])); + $arr['edited'] = (($arr['edited']) ? $arr['edited'] : datetime_convert()); + $arr['type'] = (($arr['type']) ? $arr['type'] : 'event' ); + $arr['cid'] = ((intval($arr['cid'])) ? intval($arr['cid']) : 0); + $arr['uri'] = (x($arr,'uri') ? $arr['uri'] : item_new_uri($a->get_hostname(),$arr['uid'])); if($arr['cid']) $c = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", @@ -244,8 +244,26 @@ function event_store($arr) { intval($arr['id']), intval($arr['uid']) ); - if(count($r)) + if(count($r)) { + $object = '' . xmlify(ACTIVITY_OBJ_EVENT) . '' . xmlify($arr['uri']) . ''; + $object .= '' . xmlify(format_event_bbcode($arr)) . ''; + $object .= '' . "\n"; + + + q("UPDATE `item` SET `body` = '%s', `object` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `edited` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1", + dbesc(format_event_bbcode($arr)), + dbesc($object), + dbesc($arr['allow_cid']), + dbesc($arr['allow_gid']), + dbesc($arr['deny_cid']), + dbesc($arr['deny_gid']), + dbesc(datetime_convert()), + intval($r[0]['id']), + intval($arr['uid']) + ); + return $r[0]['id']; + } else return 0; } @@ -274,7 +292,7 @@ function event_store($arr) { ); $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", - dbesc($uri), + dbesc($arr['uri']), intval($arr['uid']) ); if(count($r)) @@ -284,8 +302,8 @@ function event_store($arr) { $item_arr['uid'] = $arr['uid']; $item_arr['contact-id'] = $arr['cid']; - $item_arr['uri'] = $uri; - $item_arr['parent-uri'] = $uri; + $item_arr['uri'] = $arr['uri']; + $item_arr['parent-uri'] = $arr['uri']; $item_arr['type'] = 'activity'; $item_arr['wall'] = 1; $item_arr['contact-id'] = $contact['id']; @@ -329,6 +347,7 @@ function event_store($arr) { intval($item_id) ); } + return $item_id; } } diff --git a/mod/events.php b/mod/events.php index 1418a754..b900eb29 100644 --- a/mod/events.php +++ b/mod/events.php @@ -10,6 +10,7 @@ function events_post(&$a) { return; $event_id = ((x($_POST,'event_id')) ? intval($_POST['event_id']) : 0); + $cid = ((x($_POST,'cid')) ? intval($_POST['cid']) : 0); $uid = local_user(); $startyear = intval($_POST['startyear']); $startmonth = intval($_POST['startmonth']); @@ -77,7 +78,7 @@ function events_post(&$a) { $datarray['adjust'] = $adjust; $datarray['nofinish'] = $nofinish; $datarray['uid'] = $uid; - $datarray['cid'] = 0; + $datarray['cid'] = $cid; $datarray['allow_cid'] = $str_contact_allow; $datarray['allow_gid'] = $str_group_allow; $datarray['deny_cid'] = $str_contact_deny; @@ -87,7 +88,9 @@ function events_post(&$a) { $datarray['edited'] = $edited; $item_id = event_store($datarray); - proc_run('php',"include/notifier.php","event","$item_id"); + + if(! $cid) + proc_run('php',"include/notifier.php","event","$item_id"); } @@ -131,7 +134,7 @@ function events_content(&$a) { $m = intval($thismonth); // Put some limits on dates. The PHP date functions don't seem to do so well before 1900. - // An upper limit was chosen to keep search engines from exploring links endlessly. + // An upper limit was chosen to keep search engines from exploring links millions of years in the future. if($y < 1901) $y = 1900; @@ -154,16 +157,6 @@ function events_content(&$a) { } - $o .= ''; - $o .= '
'; - - $o .= ''; - $o .= cal($y,$m,false, ' eventcal'); - - $o .= ''; - $o .= '
'; - $o .= '
'; - $dim = get_dim($y,$m); $start = sprintf('%d-%d-%d %d:%d:%d',$y,$m,1,0,0,0); $finish = sprintf('%d-%d-%d %d:%d:%d',$y,$m,$dim,23,59,59); @@ -173,73 +166,148 @@ function events_content(&$a) { $adjust_start = datetime_convert('UTC', date_default_timezone_get(), $start); $adjust_finish = datetime_convert('UTC', date_default_timezone_get(), $finish); - +dbg(1); $r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink` FROM `event` LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` WHERE `event`.`uid` = %d - AND (( `adjust` = 0 AND `start` >= '%s' AND `finish` <= '%s' ) - OR ( `adjust` = 1 AND `start` >= '%s' AND `finish` <= '%s' )) ", + AND (( `adjust` = 0 AND `start` >= '%s' AND `start` <= '%s' ) + OR ( `adjust` = 1 AND `start` >= '%s' AND `start` <= '%s' )) ", intval(local_user()), dbesc($start), dbesc($finish), dbesc($adjust_start), dbesc($adjust_finish) ); +dbg(0); + $links = array(); + + if(count($r)) { + $r = sort_by_date($r); + foreach($r as $rr) { + $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j')); + if(! x($links,$j)) + $links[$j] = $a->get_baseurl() . '/' . $a->cmd . '#link-' . $j; + } + } + + + $o .= ''; + $o .= '
'; + + $o .= ''; + $o .= cal($y,$m,$links, ' eventcal'); + + $o .= ''; + $o .= '
'; + $o .= '
'; + + + + + + $last_date = ''; - $fmt = t('l, F j'); if(count($r)) { $r = sort_by_date($r); foreach($r as $rr) { - + $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j')); $d = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], $fmt) : datetime_convert('UTC','UTC',$rr['start'],$fmt)); $d = day_translate($d); - if($d !== $last_date) - $o .= '
' . $d . '
'; + if($d !== $last_date) + $o .= '
' . $d . '
'; $last_date = $d; $o .= format_event_html($rr); + $o .= ''; if($rr['plink']) - $o .= get_plink($rr) . '
'; + $o .= ''; + + $o .= '
'; + } } return $o; } + if($mode === 'edit' && $event_id) { + $r = q("SELECT * FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($event_id), + intval(local_user()) + ); + if(count($r)) + $orig_event = $r[0]; + } + if($mode === 'edit' || $mode === 'new') { + + $n_checked = ((x($orig_event) && $orig_event['nofinish']) ? ' checked="checked" ' : ''); + $a_checked = ((x($orig_event) && $orig_event['adjust']) ? ' checked="checked" ' : ''); + $d_orig = ((x($orig_event)) ? $orig_event['desc'] : ''); + $l_orig = ((x($orig_event)) ? $orig_event['location'] : ''); + $eid = ((x($orig_event)) ? $orig_event['id'] : 0); + $cid = ((x($orig_event)) ? $orig_event['cid'] : 0); + $uri = ((x($orig_event)) ? $orig_event['uri'] : ''); + + + if(! x($orig_event)) + $sh_checked = ''; + else + $sh_checked = (($orig_event['allow_cid'] === '<' . local_user() . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ' ); + + if($cid) + $sh_checked .= ' disabled="disabled" '; + $htpl = get_markup_template('event_head.tpl'); $a->page['htmlhead'] .= replace_macros($htpl,array('$baseurl' => $a->get_baseurl())); $tpl = get_markup_template('event_form.tpl'); - $year = datetime_convert('UTC', date_default_timezone_get(), 'now', 'Y'); - $month = datetime_convert('UTC', date_default_timezone_get(), 'now', 'm'); - $day = datetime_convert('UTC', date_default_timezone_get(), 'now', 'd'); + $sdt = ((x($orig_event)) ? $orig_event['start'] : 'now'); + $fdt = ((x($orig_event)) ? $orig_event['finish'] : 'now'); + + $syear = datetime_convert('UTC', date_default_timezone_get(), $sdt, 'Y'); + $smonth = datetime_convert('UTC', date_default_timezone_get(), $sdt, 'm'); + $sday = datetime_convert('UTC', date_default_timezone_get(), $sdt, 'd'); + + $shour = ((x($orig_event)) ? datetime_convert('UTC', date_default_timezone_get(), $sdt, 'H') : 0); + $sminute = ((x($orig_event)) ? datetime_convert('UTC', date_default_timezone_get(), $sdt, 'i') : 0); + + $fyear = datetime_convert('UTC', date_default_timezone_get(), $fdt, 'Y'); + $fmonth = datetime_convert('UTC', date_default_timezone_get(), $fdt, 'm'); + $fday = datetime_convert('UTC', date_default_timezone_get(), $fdt, 'd'); + + $fhour = ((x($orig_event)) ? datetime_convert('UTC', date_default_timezone_get(), $fdt, 'H') : 0); + $fminute = ((x($orig_event)) ? datetime_convert('UTC', date_default_timezone_get(), $fdt, 'i') : 0); + require_once('include/acl_selectors.php'); $o .= replace_macros($tpl,array( '$post' => $a->get_baseurl() . '/events', + '$eid' => $eid, + '$cid' => $cid, + '$uri' => $uri, '$e_text' => t('Event details'), '$e_desc' => t('Format is year-month-day hour:minute. Starting date and Description are required.'), '$s_text' => t('Event Starts:') . ' * ', - '$s_dsel' => datesel('start',$year+5,$year,false,$year,$month,$day), - '$s_tsel' => timesel('start',0,0), + '$s_dsel' => datesel('start',$syear+5,$syear,false,$syear,$smonth,$sday), + '$s_tsel' => timesel('start',$shour,$sminute), '$n_text' => t('Finish date/time is not known or not relevant'), - '$n_checked' => '', + '$n_checked' => $n_checked, '$f_text' => t('Event Finishes:'), - '$f_dsel' => datesel('finish',$year+5,$year,false,$year,$month,$day), - '$f_tsel' => timesel('finish',0,0), + '$f_dsel' => datesel('finish',$fyear+5,$fyear,false,$fyear,$fmonth,$fday), + '$f_tsel' => timesel('finish',$fhour,$fminute), '$a_text' => t('Adjust for viewer timezone'), - '$a_checked' => '', + '$a_checked' => $a_checked, '$d_text' => t('Description:') . ' *', - '$d_orig' => '', + '$d_orig' => $d_orig, '$l_text' => t('Location:'), - '$l_orig' => '', + '$l_orig' => $l_orig, '$sh_text' => t('Share this event'), - '$sh_checked' => '', - '$acl' => populate_acl($a->user,false), + '$sh_checked' => $sh_checked, + '$acl' => (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user),false)), '$submit' => t('Submit') )); diff --git a/view/event_form.tpl b/view/event_form.tpl index 6401f16d..5f3510be 100644 --- a/view/event_form.tpl +++ b/view/event_form.tpl @@ -6,6 +6,10 @@ $e_desc
+ + + +
$s_text
$s_dsel $s_tsel diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 9555a1e9..6769e48d 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2232,6 +2232,11 @@ a.mail-list-link { margin-bottom: 10px; } +.edit-event-link, .plink-event-link { + float: left; + margin-right: 4px; +} + .event-description:before { content: url('../../../images/calendar.png'); margin-right: 15px; @@ -2262,6 +2267,7 @@ a.mail-list-link { font-family: Courier, monospace; } .today { + font-weight: bold; color: #FF0000; } diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index a566acad..31a77c0a 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -2432,6 +2432,13 @@ a.mail-list-link { margin-bottom: 10px; } + +.edit-event-link, .plink-event-link { + float: left; + margin-right: 4px; +} + + .event-description:before { content: url('../../../images/calendar.png'); margin-right: 15px; @@ -2461,6 +2468,7 @@ a.mail-list-link { font-family: Courier, monospace; } .today { + font-weight: bold; color: #FF0000; } From fcdebc23248bb3010133aabdfbf4420e1aa4ad27 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 14 Jun 2011 20:07:40 -0700 Subject: [PATCH 3/6] event theming --- view/theme/duepuntozero/style.css | 18 ++++++++++++++++++ view/theme/loozah/style.css | 22 +++++++++++++++++++++- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 6769e48d..15564146 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2228,13 +2228,27 @@ a.mail-list-link { font-size: 20px; } +.vevent { + border: 1px solid #CCCCCC; +} +.vevent .event-description, .vevent .event-location { + margin-left: 10px; + margin-right: 10px; +} +.vevent .event-start { + margin-left: 10px; + margin-right: 10px; +} + #new-event-link { margin-bottom: 10px; } .edit-event-link, .plink-event-link { float: left; + margin-top: 4px; margin-right: 4px; + margin-bottom: 15px; } .event-description:before { @@ -2252,6 +2266,10 @@ a.mail-list-link { float: right; } +.event-list-date { + margin-bottom: 10px; +} + .prevcal, .nextcal { float: left; margin-left: 32px; diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 31a77c0a..d70968a8 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -2428,6 +2428,20 @@ a.mail-list-link { font-size: 20px; } + +.vevent { + border: 1px solid #CCCCCC; +} +.vevent .event-description, .vevent .event-location { + margin-left: 10px; + margin-right: 10px; +} +.vevent .event-start { + margin-left: 10px; + margin-right: 10px; +} + + #new-event-link { margin-bottom: 10px; } @@ -2435,7 +2449,9 @@ a.mail-list-link { .edit-event-link, .plink-event-link { float: left; - margin-right: 4px; + margin-top: 4px; + margin-right: 4px; + margin-bottom: 15px; } @@ -2444,6 +2460,10 @@ a.mail-list-link { margin-right: 15px; } +.event-list-date { + margin-bottom: 10px; +} + .event-start, .event-end { margin-left: 10px; width: 330px; From ca848234375867240ba6cc6d4b43599e770a54e8 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 14 Jun 2011 20:49:25 -0700 Subject: [PATCH 4/6] Dear $username not expanded/replaced in text emails --- mod/dfrn_notify.php | 6 ++++++ mod/item.php | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 6ca3f9fc..8f11cabf 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -217,6 +217,7 @@ function dfrn_notify_post(&$a) { // load the template for private message notifications $tpl = get_intltext_template('mail_received_html_body_eml.tpl'); $email_html_body_tpl = replace_macros($tpl,array( + '$username' => $importer['username'], '$siteName' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $importer['thumb'], // thumbnail url for sender icon @@ -232,6 +233,7 @@ function dfrn_notify_post(&$a) { // load the template for private message notifications $tpl = get_intltext_template('mail_received_text_body_eml.tpl'); $email_text_body_tpl = replace_macros($tpl,array( + '$username' => $importer['username'], '$siteName' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $importer['thumb'], // thumbnail url for sender icon @@ -416,6 +418,7 @@ function dfrn_notify_post(&$a) { // load the template for private message notifications $tpl = get_intltext_template('cmnt_received_html_body_eml.tpl'); $email_html_body_tpl = replace_macros($tpl,array( + '$username' => $importer['username'], '$sitename' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $datarray['author-avatar'], // thumbnail url for sender icon @@ -429,6 +432,7 @@ function dfrn_notify_post(&$a) { // load the template for private message notifications $tpl = get_intltext_template('cmnt_received_text_body_eml.tpl'); $email_text_body_tpl = replace_macros($tpl,array( + '$username' => $importer['username'], '$sitename' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $datarray['author-avatar'], // thumbnail url for sender icon @@ -545,6 +549,7 @@ function dfrn_notify_post(&$a) { // load the template for private message notifications $tpl = get_intltext_template('cmnt_received_html_body_eml.tpl'); $email_html_body_tpl = replace_macros($tpl,array( + '$username' => $importer['username'], '$sitename' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $datarray['author-avatar'], // thumbnail url for sender icon @@ -557,6 +562,7 @@ function dfrn_notify_post(&$a) { // load the template for private message notifications $tpl = get_intltext_template('cmnt_received_text_body_eml.tpl'); $email_text_body_tpl = replace_macros($tpl,array( + '$username' => $importer['username'], '$sitename' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $datarray['author-avatar'], // thumbnail url for sender icon diff --git a/mod/item.php b/mod/item.php index d7c15ff0..776c0dcc 100644 --- a/mod/item.php +++ b/mod/item.php @@ -544,6 +544,7 @@ function item_post(&$a) { // load the template for private message notifications $tpl = get_intltext_template('cmnt_received_html_body_eml.tpl'); $email_html_body_tpl = replace_macros($tpl,array( + '$username' => $user['username'], '$sitename' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $author['thumb'], // thumbnail url for sender icon @@ -557,6 +558,7 @@ function item_post(&$a) { // load the template for private message notifications $tpl = get_intltext_template('cmnt_received_text_body_eml.tpl'); $email_text_body_tpl = replace_macros($tpl,array( + '$username' => $user['username'], '$sitename' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $author['thumb'], // thumbnail url for sender icon @@ -610,6 +612,7 @@ function item_post(&$a) { // load the template for private message notifications $tpl = load_view_file('view/wall_received_html_body_eml.tpl'); $email_html_body_tpl = replace_macros($tpl,array( + '$username' => $user['username'], '$sitename' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $author['thumb'], // thumbnail url for sender icon @@ -622,6 +625,7 @@ function item_post(&$a) { // load the template for private message notifications $tpl = load_view_file('view/wall_received_text_body_eml.tpl'); $email_text_body_tpl = replace_macros($tpl,array( + '$username' => $user['username'], '$sitename' => $a->config['sitename'], // name of this site '$siteurl' => $a->get_baseurl(), // descriptive url of this site '$thumb' => $author['thumb'], // thumbnail url for sender icon From c3797743006bce467ad3595a7847755a3f678347 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 14 Jun 2011 21:22:52 -0700 Subject: [PATCH 5/6] add some whitespace in event html --- include/event.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/event.php b/include/event.php index 31df86e2..f37cdc6d 100644 --- a/include/event.php +++ b/include/event.php @@ -10,9 +10,9 @@ function format_event_html($ev) { $bd_format = t('l F d, Y \@ g A') ; // Friday January 18, 2011 @ 8 AM - $o = '
'; + $o = '
' . "\r\n"; - $o .= '

' . bbcode($ev['desc']) . '

'; + $o .= '

' . bbcode($ev['desc']) . '

' . "\r\n"; $o .= '

' . t('Starts:') . ' ' . bbcode($ev['location']) - . '

'; + . '

' . "\r\n"; - $o .= '
'; + $o .= '
' . "\r\n"; return $o; } From cee63c7a0d5362e255551d0a8c3dfa667322f8b1 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 14 Jun 2011 21:44:27 -0700 Subject: [PATCH 6/6] preserve original timezone adjust selection when editing events --- include/event.php | 3 +++ mod/events.php | 24 ++++++++++++++---------- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/include/event.php b/include/event.php index f37cdc6d..9d4a8df5 100644 --- a/include/event.php +++ b/include/event.php @@ -175,6 +175,9 @@ function ev_compare($a,$b) { $date_a = (($a['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$a['start']) : $a['start']); $date_b = (($b['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$b['start']) : $b['start']); + + if($date_a === $date_b) + return strcasecmp($a['desc'],$b['desc']); return strcmp($date_a,$date_b); } diff --git a/mod/events.php b/mod/events.php index b900eb29..07231eb0 100644 --- a/mod/events.php +++ b/mod/events.php @@ -267,19 +267,23 @@ dbg(0); $sdt = ((x($orig_event)) ? $orig_event['start'] : 'now'); $fdt = ((x($orig_event)) ? $orig_event['finish'] : 'now'); - $syear = datetime_convert('UTC', date_default_timezone_get(), $sdt, 'Y'); - $smonth = datetime_convert('UTC', date_default_timezone_get(), $sdt, 'm'); - $sday = datetime_convert('UTC', date_default_timezone_get(), $sdt, 'd'); + $tz = ((x($orig_event) && $orig_event['adjust']) ? date_default_timezone_get() : 'UTC'); + - $shour = ((x($orig_event)) ? datetime_convert('UTC', date_default_timezone_get(), $sdt, 'H') : 0); - $sminute = ((x($orig_event)) ? datetime_convert('UTC', date_default_timezone_get(), $sdt, 'i') : 0); - $fyear = datetime_convert('UTC', date_default_timezone_get(), $fdt, 'Y'); - $fmonth = datetime_convert('UTC', date_default_timezone_get(), $fdt, 'm'); - $fday = datetime_convert('UTC', date_default_timezone_get(), $fdt, 'd'); + $syear = datetime_convert('UTC', $tz, $sdt, 'Y'); + $smonth = datetime_convert('UTC', $tz, $sdt, 'm'); + $sday = datetime_convert('UTC', $tz, $sdt, 'd'); - $fhour = ((x($orig_event)) ? datetime_convert('UTC', date_default_timezone_get(), $fdt, 'H') : 0); - $fminute = ((x($orig_event)) ? datetime_convert('UTC', date_default_timezone_get(), $fdt, 'i') : 0); + $shour = ((x($orig_event)) ? datetime_convert('UTC', $tz, $sdt, 'H') : 0); + $sminute = ((x($orig_event)) ? datetime_convert('UTC', $tz, $sdt, 'i') : 0); + + $fyear = datetime_convert('UTC', $tz, $fdt, 'Y'); + $fmonth = datetime_convert('UTC', $tz, $fdt, 'm'); + $fday = datetime_convert('UTC', $tz, $fdt, 'd'); + + $fhour = ((x($orig_event)) ? datetime_convert('UTC', $tz, $fdt, 'H') : 0); + $fminute = ((x($orig_event)) ? datetime_convert('UTC', $tz, $fdt, 'i') : 0); require_once('include/acl_selectors.php');