diff options
author | friendica <info@friendica.com> | 2013-01-07 15:12:16 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-07 15:12:16 -0800 |
commit | da188214c304cefaa6fe0a36e1f60932da2f3bfb (patch) | |
tree | 9d4cf84f1fad3af4f7da3adeaf9ede4d04885bf2 /include | |
parent | 31ce6a3876fc0a3c37be1474a627ec0cea0e3622 (diff) | |
download | volse-hubzilla-da188214c304cefaa6fe0a36e1f60932da2f3bfb.tar.gz volse-hubzilla-da188214c304cefaa6fe0a36e1f60932da2f3bfb.tar.bz2 volse-hubzilla-da188214c304cefaa6fe0a36e1f60932da2f3bfb.zip |
events are still buggered and aren't anywhere close to working, but not buggered quite as much as before.
Diffstat (limited to 'include')
-rw-r--r-- | include/contact_widgets.php | 36 | ||||
-rw-r--r-- | include/event.php | 10 |
2 files changed, 7 insertions, 39 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php index e0c9ca0e8..47945e66e 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -40,41 +40,6 @@ function findpeople_widget() { } -function networks_widget($baseurl,$selected = '') { - - $a = get_app(); - - if(! local_user()) - return ''; - - - $r = q("select distinct(network) from contact where uid = %d and self = 0", - intval(local_user()) - ); - - $nets = array(); - if(count($r)) { - require_once('include/contact_selectors.php'); - foreach($r as $rr) { - if($rr['network']) - $nets[] = array('ref' => $rr['network'], 'name' => network_to_name($rr['network']), 'selected' => (($selected == $rr['network']) ? 'selected' : '' )); - } - } - - if(count($nets) < 2) - return ''; - - return replace_macros(get_markup_template('nets.tpl'),array( - '$title' => t('Networks'), - '$desc' => '', - '$sel_all' => (($selected == '') ? 'selected' : ''), - '$all' => t('All Networks'), - '$nets' => $nets, - '$base' => $baseurl, - - )); -} - function fileas_widget($baseurl,$selected = '') { $a = get_app(); @@ -150,6 +115,7 @@ function common_friends_visitor_widget($profile_uid) { } } +// FIXME if(! $cid) { if(get_my_url()) { $r = q("select id from contact where nurl = '%s' and uid = %d limit 1", diff --git a/include/event.php b/include/event.php index e4a01cf7d..6f9ba779c 100644 --- a/include/event.php +++ b/include/event.php @@ -177,10 +177,10 @@ function bbtoevent($s) { } -function sort_by_date($a) { - - usort($a,'ev_compare'); - return $a; +function sort_by_date($arr) { + if(is_array($arr)) + usort($arr,'ev_compare'); + return $arr; } @@ -212,6 +212,8 @@ function event_store($arr) { $arr['message_id'] = (x($arr,'message_id') ? $arr['message_id'] : get_message_id()); $arr['private'] = ((x($arr,'private')) ? intval($arr['private']) : 0); + +// FIXME if($arr['cid']) $c = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($arr['cid']), |