mirror of
https://github.com/friendica/friendica
synced 2025-04-26 02:30:11 +00:00
suggestion template
This commit is contained in:
parent
39b5263e35
commit
59d9070d13
3 changed files with 15 additions and 5 deletions
|
@ -171,7 +171,7 @@ function dfrn_notify_post(&$a) {
|
|||
|
||||
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `url` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($fsugg['name']),
|
||||
dbesc($fsuff['url']),
|
||||
dbesc($fsugg['url']),
|
||||
intval($fsugg['uid'])
|
||||
);
|
||||
if(count($r))
|
||||
|
@ -182,7 +182,7 @@ function dfrn_notify_post(&$a) {
|
|||
$fid = 0;
|
||||
$r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `photo` = '%s' LIMIT 1",
|
||||
dbesc($fsugg['url']),
|
||||
dbesc($fsuff['name']),
|
||||
dbesc($fsugg['name']),
|
||||
dbesc($fsugg['photo'])
|
||||
);
|
||||
if(count($r)) {
|
||||
|
@ -190,13 +190,13 @@ function dfrn_notify_post(&$a) {
|
|||
}
|
||||
if(! $fid)
|
||||
$r = q("INSERT INTO `fcontact` ( `name`,`url`,`photo` ) VALUES ( '%s', '%s', '%s' ) ",
|
||||
dbesc($fsuff['name']),
|
||||
dbesc($fsugg['name']),
|
||||
dbesc($fsugg['url']),
|
||||
dbesc($fsugg['photo'])
|
||||
);
|
||||
$r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `photo` = '%s' LIMIT 1",
|
||||
dbesc($fsugg['url']),
|
||||
dbesc($fsuff['name']),
|
||||
dbesc($fsugg['name']),
|
||||
dbesc($fsugg['photo'])
|
||||
);
|
||||
if(count($r)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue