fix: 🩹 fix up wrong ordering
All checks were successful
/ phplint (push) Successful in 6s

This commit is contained in:
David Bailey 2024-01-09 00:12:54 +01:00
parent 5d1d4cdc32
commit f4824f8ca8

View file

@ -61,11 +61,11 @@ class PostHandler extends MySQLAdapter {
$post_meta['icon'] = $icon_mapping[$post_meta['type']] ?? 'question';
}
$post_data['post_metadata'] = $post_meta;
$post_data["post_file_dir"] = '/' . $this->data_directory . $post_data["post_path"];
$post_data['post_metadata'] = $post_meta;
return $post_data;
}