We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f1fde6 commit e275891Copy full SHA for e275891
core/src/Controllers/Tmplvar.php
@@ -210,7 +210,7 @@ protected function parameterData()
210
$_SESSION['itemname'] = $this->managerTheme->getLexicon('new_template');
211
$data->category = isset($_REQUEST['catid']) ? (int) $_REQUEST['catid'] : 0;
212
}
213
- $data->properties = json_decode($data->properties, true) ?? [];
+ $data->properties = json_decode($data->properties ?? '', true) ?? [];
214
$values = $this->managerTheme->loadValuesFromSession($_POST);
215
if ($values) {
216
$data->fill($values);
0 commit comments