X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffsuggest.php;h=35710bb338d0139717ed133228d3bcaf3bd53222;hb=7f143c3159615b4a10539447bcf250a5fca793a5;hp=4f432d840a89287e5927214f3e190671c31cdd6e;hpb=ace0200b8cade826d5a49aacda876a279c0c7128;p=friendica.git diff --git a/mod/fsuggest.php b/mod/fsuggest.php index 4f432d840a..35710bb338 100644 --- a/mod/fsuggest.php +++ b/mod/fsuggest.php @@ -7,7 +7,7 @@ use Friendica\App; use Friendica\Core\ACL; use Friendica\Core\L10n; use Friendica\Core\Worker; -use Friendica\Database\DBM; +use Friendica\Database\DBA; use Friendica\Util\DateTimeFormat; function fsuggest_post(App $a) @@ -26,7 +26,7 @@ function fsuggest_post(App $a) intval($contact_id), intval(local_user()) ); - if (! DBM::is_result($r)) { + if (! DBA::isResult($r)) { notice(L10n::t('Contact not found.') . EOL); return; } @@ -36,33 +36,33 @@ function fsuggest_post(App $a) $hash = random_string(); - $note = escape_tags(trim($_POST['note'])); + $note = escape_tags(trim(defaults($_POST, 'note', ''))); if ($new_contact) { $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($new_contact), intval(local_user()) ); - if (DBM::is_result($r)) { + if (DBA::isResult($r)) { $x = q("INSERT INTO `fsuggest` ( `uid`,`cid`,`name`,`url`,`request`,`photo`,`note`,`created`) VALUES ( %d, %d, '%s','%s','%s','%s','%s','%s')", intval(local_user()), intval($contact_id), - dbesc($r[0]['name']), - dbesc($r[0]['url']), - dbesc($r[0]['request']), - dbesc($r[0]['photo']), - dbesc($hash), - dbesc(DateTimeFormat::utcNow()) + DBA::escape($r[0]['name']), + DBA::escape($r[0]['url']), + DBA::escape($r[0]['request']), + DBA::escape($r[0]['photo']), + DBA::escape($hash), + DBA::escape(DateTimeFormat::utcNow()) ); $r = q("SELECT `id` FROM `fsuggest` WHERE `note` = '%s' AND `uid` = %d LIMIT 1", - dbesc($hash), + DBA::escape($hash), intval(local_user()) ); - if (DBM::is_result($r)) { + if (DBA::isResult($r)) { $fsuggest_id = $r[0]['id']; q("UPDATE `fsuggest` SET `note` = '%s' WHERE `id` = %d AND `uid` = %d", - dbesc($note), + DBA::escape($note), intval($fsuggest_id), intval(local_user()) ); @@ -92,7 +92,7 @@ function fsuggest_content(App $a) intval($contact_id), intval(local_user()) ); - if (! DBM::is_result($r)) { + if (! DBA::isResult($r)) { notice(L10n::t('Contact not found.') . EOL); return; }