Hi i find a error also in this forum when you create a new topic
to solve change in this file
$sticky = $_POST['sticky'] === "true" ? 'yes' : 'no';
$frontpage = $_POST['frontpage'] === "true" ? 'yes' : 'no';
with:
$sticky = isset($_POST['sticky']) && $_POST['sticky'] === "true" ? 'yes' : 'no';
$frontpage = isset($_POST['frontpage']) && $_POST['frontpage'] === "true" ? 'yes' : 'no';
Hi i find a error also in this forum when you create a new topic

to solve change in this file
````
$sticky = $_POST['sticky'] === "true" ? 'yes' : 'no';
$frontpage = $_POST['frontpage'] === "true" ? 'yes' : 'no';
````
with:
````
$sticky = isset($_POST['sticky']) && $_POST['sticky'] === "true" ? 'yes' : 'no';
$frontpage = isset($_POST['frontpage']) && $_POST['frontpage'] === "true" ? 'yes' : 'no';
````