Some removed notices

This commit is contained in:
Michael 2018-08-29 18:04:03 +00:00
parent 2db9b497bd
commit 19abd1a17e
2 changed files with 4 additions and 4 deletions

View File

@ -180,7 +180,7 @@ function ifttt_message($uid, $item)
//$_REQUEST['date'] = $item['date']; //$_REQUEST['date'] = $item['date'];
//$_REQUEST['uri'] = $item['url']; //$_REQUEST['uri'] = $item['url'];
if (strstr($item['url'], 'facebook.com')) { if (!empty($item['url']) && strstr($item['url'], 'facebook.com')) {
$hash = hash('ripemd128', $item['url']); $hash = hash('ripemd128', $item['url']);
$_REQUEST['extid'] = Protocol::FACEBOOK; $_REQUEST['extid'] = Protocol::FACEBOOK;
$_REQUEST['message_id'] = Item::newURI($uid, Protocol::FACEBOOK . ':' . $hash); $_REQUEST['message_id'] = Item::newURI($uid, Protocol::FACEBOOK . ':' . $hash);

View File

@ -34,9 +34,9 @@ function xmpp_addon_settings_post()
return; return;
} }
PConfig::set(local_user(), 'xmpp', 'enabled', intval($_POST['xmpp_enabled'])); PConfig::set(local_user(), 'xmpp', 'enabled', defaults($_POST, 'xmpp_enabled', false));
PConfig::set(local_user(), 'xmpp', 'individual', intval($_POST['xmpp_individual'])); PConfig::set(local_user(), 'xmpp', 'individual', defaults($_POST, 'xmpp_individual', false));
PConfig::set(local_user(), 'xmpp', 'bosh_proxy', $_POST['xmpp_bosh_proxy']); PConfig::set(local_user(), 'xmpp', 'bosh_proxy', defaults($_POST, 'xmpp_bosh_proxy', ''));
info(L10n::t('XMPP settings updated.') . EOL); info(L10n::t('XMPP settings updated.') . EOL);
} }