mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 06:55:03 +00:00
Don't enforce 100-character limit on folder names
This commit is contained in:
parent
8b50297e6d
commit
254ffe7b48
1 changed files with 0 additions and 2 deletions
|
@ -344,8 +344,6 @@ class Database {
|
||||||
throw new Db\ExceptionInput("missing", ["action" => __FUNCTION__, "field" => "name"]);
|
throw new Db\ExceptionInput("missing", ["action" => __FUNCTION__, "field" => "name"]);
|
||||||
} else if(!strlen(trim($data['name']))) {
|
} else if(!strlen(trim($data['name']))) {
|
||||||
throw new Db\ExceptionInput("whitespace", ["action" => __FUNCTION__, "field" => "name"]);
|
throw new Db\ExceptionInput("whitespace", ["action" => __FUNCTION__, "field" => "name"]);
|
||||||
} else if(iconv_strlen($data['name']) > 100) {
|
|
||||||
throw new Db\ExceptionInput("tooLong", ["action" => __FUNCTION__, "field" => "name", 'max' => 100]);
|
|
||||||
}
|
}
|
||||||
// normalize folder's parent, if there is one
|
// normalize folder's parent, if there is one
|
||||||
$parent = array_key_exists("parent", $data) ? (int) $data['parent'] : 0;
|
$parent = array_key_exists("parent", $data) ? (int) $data['parent'] : 0;
|
||||||
|
|
Loading…
Reference in a new issue