mirror of
https://github.com/openvk/openvk
synced 2024-11-15 11:39:13 +03:00
Фикс ошибки при создании продукта
This commit is contained in:
parent
97aaee48dc
commit
78aecafbc6
1 changed files with 2 additions and 1 deletions
|
@ -201,7 +201,8 @@ final class BugtrackerPresenter extends OpenVKPresenter
|
|||
DB::i()->getContext()->table("bt_products")->insert([
|
||||
"creator_id" => $this->user->identity->getId(),
|
||||
"title" => $title,
|
||||
"description" => $description
|
||||
"description" => $description,
|
||||
"created" => time()
|
||||
]);
|
||||
|
||||
$this->redirect("/bugtracker?act=products");
|
||||
|
|
Loading…
Reference in a new issue