mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
set null record value on name entry is empty
This commit is contained in:
parent
2192160077
commit
89e89d607a
1 changed files with 1 additions and 1 deletions
|
|
@ -194,7 +194,7 @@ class Auth
|
||||||
$this->page->container->browser->database->identity->add(
|
$this->page->container->browser->database->identity->add(
|
||||||
$identity->crt(),
|
$identity->crt(),
|
||||||
$identity->key(),
|
$identity->key(),
|
||||||
$this->name->get_text()
|
$this->name->get_text() ? $this->name->get_text() : null
|
||||||
),
|
),
|
||||||
$this->page->navbar->request->getValue()
|
$this->page->navbar->request->getValue()
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue