mirror of
https://github.com/marty-oehme/scripts.git
synced 2025-12-09 13:32:46 +00:00
added checking for invalid characters in the identifier
This commit is contained in:
parent
2b7735ff59
commit
b443664675
2 changed files with 5 additions and 2 deletions
|
|
@ -39,8 +39,11 @@ class TestHelper {
|
|||
$errors[] = "No name was entered!";
|
||||
}
|
||||
|
||||
if ($data["identifier"] == "") {
|
||||
$identifier = $data["identifier"];
|
||||
if ($identifier == "") {
|
||||
$errors[] = "No identifier was entered!";
|
||||
} elseif (preg_match('/[^a-z0-9]/', $str)) {
|
||||
$errors[] = "Invalid charactes were found in identifier '$identifier'!";
|
||||
}
|
||||
|
||||
if ($data["description"] == "") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue