mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Update constructs to not have parenthesis.
This commit is contained in:
@@ -6,7 +6,8 @@
|
||||
|
||||
if (isset($_POST['add_category'])) {
|
||||
|
||||
require_once('post/category_model.php');
|
||||
require_once 'post/category_model.php';
|
||||
|
||||
|
||||
mysqli_query($mysqli,"INSERT INTO categories SET category_name = '$name', category_type = '$type', category_color = '$color'");
|
||||
|
||||
@@ -21,7 +22,8 @@ if (isset($_POST['add_category'])) {
|
||||
|
||||
if (isset($_POST['edit_category'])) {
|
||||
|
||||
require_once('post/category_model.php');
|
||||
require_once 'post/category_model.php';
|
||||
|
||||
|
||||
$category_id = intval($_POST['category_id']);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user