mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
Exclude invitation register rows from pending-view
↪ They were wrongly appearing in the moderation screen and in the notifications
This commit is contained in:
parent
5a00a2c441
commit
e3a2c70ccb
2 changed files with 4 additions and 2 deletions
|
@ -3809,7 +3809,8 @@ CREATE VIEW `pending-view` AS SELECT
|
|||
`contact`.`nick` AS `nick`
|
||||
FROM `register`
|
||||
INNER JOIN `contact` ON `register`.`uid` = `contact`.`uid`
|
||||
INNER JOIN `user` ON `register`.`uid` = `user`.`uid`;
|
||||
INNER JOIN `user` ON `register`.`uid` = `user`.`uid`
|
||||
WHERE `register`.`uid` != 0;
|
||||
|
||||
--
|
||||
-- VIEW tag-search-view
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue