From 892de8df1336dc887ee0452657b5936f0dc14f38 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sat, 3 Aug 2024 09:07:23 +0300 Subject: [PATCH] add find filter value --- src/Entity/Browser/Container/Page/Auth.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Entity/Browser/Container/Page/Auth.php b/src/Entity/Browser/Container/Page/Auth.php index bd240fd3..425562b8 100644 --- a/src/Entity/Browser/Container/Page/Auth.php +++ b/src/Entity/Browser/Container/Page/Auth.php @@ -79,7 +79,9 @@ class Auth ); // Search database for auth records - foreach ($this->page->container->browser->database->auth->find() as $auth) + foreach ($this->page->container->browser->database->auth->find( + $this->page->navbar->request->getValue() + ) as $auth) { // Get related identity records if ($identity = $this->page->container->browser->database->identity->get($auth->identity))