From 65dac62e48267fc8fdcc8976d109aa78556990a0 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 22 Mar 2023 00:08:35 -0400 Subject: [PATCH] spelling: suggest Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Navigation/Notifications/Factory/Introduction.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Navigation/Notifications/Factory/Introduction.php b/src/Navigation/Notifications/Factory/Introduction.php index bc5affd696..3d176743c0 100644 --- a/src/Navigation/Notifications/Factory/Introduction.php +++ b/src/Navigation/Notifications/Factory/Introduction.php @@ -100,11 +100,11 @@ class Introduction extends BaseFactory try { $stmtNotifications = $this->dba->p( "SELECT `intro`.`id` AS `intro_id`, `intro`.*, `contact`.*, - `sugggest-contact`.`name` AS `fname`, `sugggest-contact`.`url` AS `furl`, `sugggest-contact`.`addr` AS `faddr`, - `sugggest-contact`.`photo` AS `fphoto`, `sugggest-contact`.`request` AS `frequest` + `suggest-contact`.`name` AS `fname`, `suggest-contact`.`url` AS `furl`, `suggest-contact`.`addr` AS `faddr`, + `suggest-contact`.`photo` AS `fphoto`, `suggest-contact`.`request` AS `frequest` FROM `intro` LEFT JOIN `contact` ON `contact`.`id` = `intro`.`contact-id` - LEFT JOIN `contact` AS `sugggest-contact` ON `intro`.`suggest-cid` = `sugggest-contact`.`id` + LEFT JOIN `contact` AS `suggest-contact` ON `intro`.`suggest-cid` = `suggest-contact`.`id` WHERE `intro`.`uid` = ? $sql_extra LIMIT ?, ?", $this->session->getLocalUserId(),