mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
clean up w3c validation and layout for priv mail and lang selector
This commit is contained in:
parent
09fcfe2fe7
commit
b1e5dfad3c
8 changed files with 17 additions and 11 deletions
|
@ -451,9 +451,12 @@ function dfrn_notify_post(&$a) {
|
|||
|
||||
if($is_reply) {
|
||||
|
||||
// was the top-level post for this reply written by somebody on this site? Specifically, the recipient?
|
||||
// was the top-level post for this reply written by somebody on this site?
|
||||
// Specifically, the recipient?
|
||||
|
||||
$r = q("select `item`.`id` from `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` where `contact`.`self` = 1 AND `item`.`uri` = '%s' AND `item`.`uid` = %d LIMIT 1",
|
||||
$r = q("select `item`.`id` from `item`
|
||||
LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
||||
WHERE `contact`.`self` = 1 AND `item`.`uri` = '%s' AND `item`.`uid` = %d LIMIT 1",
|
||||
dbesc($parent_uri),
|
||||
intval($importer['importer_uid'])
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue