forked from Business/BinStack
Compare commits
No commits in common. "bugfix" and "master" have entirely different histories.
@ -124,7 +124,7 @@ CREATE TABLE IF NOT EXISTS `images` (
|
||||
CONSTRAINT `fk_images_items1`
|
||||
FOREIGN KEY (`itemid`)
|
||||
REFERENCES `items` (`itemid`)
|
||||
ON DELETE CASCADE
|
||||
ON DELETE NO ACTION
|
||||
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 CASCADE
|
||||
ON DELETE NO ACTION
|
||||
ON UPDATE NO ACTION)
|
||||
ENGINE = InnoDB
|
||||
DEFAULT CHARACTER SET = utf8;
|
||||
|
@ -6,6 +6,7 @@
|
||||
"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,6 +8,5 @@
|
||||
"Delete": "Delete",
|
||||
"Back": "Back",
|
||||
"Image uploaded.": "Image uploaded.",
|
||||
"image deleted": "Image deleted.",
|
||||
"Upload finished with errors: {arg}": "Upload finished with errors: {arg}"
|
||||
}
|
||||
|
@ -96,9 +96,5 @@ define("MESSAGES", [
|
||||
"upload_success" => [
|
||||
"string" => "Image uploaded.",
|
||||
"type" => "success"
|
||||
],
|
||||
"image_deleted" => [
|
||||
"string" => "image deleted",
|
||||
"type" => "success"
|
||||
]
|
||||
]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user