X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcontacts.php;h=0569c8ca4ecaac996e25a4951a37c92f0f7990d1;hb=1a436264cd9b143f30f9ff3c0ee4b7e0234ebe7e;hp=38e0992257d9f49f67508c6c9fd5b290e0c64416;hpb=479180ca8ea9fb02c8e90b0017d2f584aa199043;p=friendica.git diff --git a/mod/contacts.php b/mod/contacts.php index 38e0992257..0569c8ca4e 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -7,7 +7,7 @@ require_once('include/Scrape.php'); require_once('mod/proxy.php'); require_once('include/Photo.php'); -function contacts_init(App &$a) { +function contacts_init(App $a) { if (! local_user()) { return; } @@ -97,7 +97,7 @@ function contacts_init(App &$a) { } -function contacts_batch_actions(App &$a){ +function contacts_batch_actions(App $a) { $contacts_id = $_POST['contact_batch']; if (!is_array($contacts_id)) return; @@ -144,7 +144,7 @@ function contacts_batch_actions(App &$a){ } -function contacts_post(App &$a) { +function contacts_post(App $a) { if (! local_user()) { return; @@ -191,13 +191,13 @@ function contacts_post(App &$a) { $fetch_further_information = intval($_POST['fetch_further_information']); - $ffi_keyword_blacklist = fix_mce_lf(escape_tags(trim($_POST['ffi_keyword_blacklist']))); + $ffi_keyword_blacklist = escape_tags(trim($_POST['ffi_keyword_blacklist'])); $priority = intval($_POST['poll']); if($priority > 5 || $priority < 0) $priority = 0; - $info = fix_mce_lf(escape_tags(trim($_POST['info']))); + $info = escape_tags(trim($_POST['info'])); $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `info` = '%s', `hidden` = %d, `notify_new_posts` = %d, `fetch_further_information` = %d, @@ -349,7 +349,7 @@ function _contact_drop($contact_id, $orig_record) { } -function contacts_content(App &$a) { +function contacts_content(App $a) { $sort_type = 0; $o = ''; @@ -489,17 +489,11 @@ function contacts_content(App &$a) { $contact_id = $a->data['contact']['id']; $contact = $a->data['contact']; - $editselect = 'none'; - if( feature_enabled(local_user(),'richtext') ) - $editselect = 'exact'; - $a->page['htmlhead'] .= replace_macros(get_markup_template('contact_head.tpl'), array( '$baseurl' => App::get_baseurl(true), - '$editselect' => $editselect, )); $a->page['end'] .= replace_macros(get_markup_template('contact_end.tpl'), array( '$baseurl' => App::get_baseurl(true), - '$editselect' => $editselect, )); require_once('include/contact_selectors.php'); @@ -540,11 +534,11 @@ function contacts_content(App &$a) { $insecure = t('Private communications are not available for this contact.'); - $last_update = (($contact['last-update'] == '0000-00-00 00:00:00') + $last_update = (($contact['last-update'] <= NULL_DATE) ? t('Never') : datetime_convert('UTC',date_default_timezone_get(),$contact['last-update'],'D, j M Y, g:i A')); - if($contact['last-update'] !== '0000-00-00 00:00:00') + if ($contact['last-update'] > NULL_DATE) $last_update .= ' ' . (($contact['last-update'] <= $contact['success_update']) ? t("\x28Update was successful\x29") : t("\x28Update was not successful\x29")); $lblsuggest = (($contact['network'] === NETWORK_DFRN) ? t('Suggest friends') : ''); @@ -564,7 +558,7 @@ function contacts_content(App &$a) { // tabs $tab_str = contacts_tab($a, $contact_id, 2); - $lost_contact = (($contact['archive'] && $contact['term-date'] != '0000-00-00 00:00:00' && $contact['term-date'] < datetime_convert('','','now')) ? t('Communications lost with this contact!') : ''); + $lost_contact = (($contact['archive'] && $contact['term-date'] > NULL_DATE && $contact['term-date'] < datetime_convert('','','now')) ? t('Communications lost with this contact!') : ''); if ($contact['network'] == NETWORK_FEED) $fetch_further_information = array('fetch_further_information', t('Fetch further information for feeds'), $contact['fetch_further_information'], t('Fetch further information for feeds'), @@ -831,13 +825,13 @@ function contacts_content(App &$a) { /** * @brief List of pages for the Contact TabBar - * + * * Available Pages are 'Status', 'Profile', 'Contacts' and 'Common Friends' - * + * * @param app $a * @param int $contact_id The ID of the contact * @param int $active_tab 1 if tab should be marked as active - * + * * @return array with with contact TabBar data */ function contacts_tab($a, $contact_id, $active_tab) { @@ -961,9 +955,9 @@ function _contact_detail_for_template($rr){ /** * @brief Gives a array with actions which can performed to a given contact - * + * * This includes actions like e.g. 'block', 'hide', 'archive', 'delete' and others - * + * * @param array $contact Data about the Contact * @return array with contact related actions */ @@ -1019,7 +1013,7 @@ function contact_actions($contact) { $contact_actions['delete'] = array( 'label' => t('Delete'), - 'url' => 'contacts/' . $contact['id'] . '/drop', + 'url' => 'contacts/' . $contact['id'] . '/drop', 'title' => t('Delete contact'), 'sel' => '', 'id' => 'delete',