Compare commits

...

3 Commits

@ -124,7 +124,7 @@ CREATE TABLE IF NOT EXISTS `images` (
CONSTRAINT `fk_images_items1`
FOREIGN KEY (`itemid`)
REFERENCES `items` (`itemid`)
ON DELETE NO ACTION
ON DELETE CASCADE
ON UPDATE NO ACTION)
ENGINE = InnoDB;

@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `images` (
CONSTRAINT `fk_images_items1`
FOREIGN KEY (`itemid`)
REFERENCES `inventory`.`items` (`itemid`)
ON DELETE NO ACTION
ON DELETE CASCADE
ON UPDATE NO ACTION)
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8;

@ -6,7 +6,6 @@
"login server error": "The login server returned an error: {arg}",
"login server user data error": "The login server refused to provide account information. Try again or contact technical support.",
"captcha error": "There was a problem with the CAPTCHA (robot test). Try again.",
"no access permission": "You do not have permission to access this system.",
"no permission": "You do not have permission to access this system.",
"no edit permission": "You do not have permission to modify records."
}

@ -8,5 +8,6 @@
"Delete": "Delete",
"Back": "Back",
"Image uploaded.": "Image uploaded.",
"image deleted": "Image deleted.",
"Upload finished with errors: {arg}": "Upload finished with errors: {arg}"
}

@ -96,5 +96,9 @@ define("MESSAGES", [
"upload_success" => [
"string" => "Image uploaded.",
"type" => "success"
],
"image_deleted" => [
"string" => "image deleted",
"type" => "success"
]
]);

Loading…
Cancel
Save