Фикс ошибки при создании продукта

This commit is contained in:
n1rwana 2022-08-21 23:37:33 +03:00
parent 97aaee48dc
commit 78aecafbc6

View file

@ -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");