Changed maximum length of list name from 30 to 50 chars

This commit is contained in:
2022-02-12 21:20:50 +01:00
parent 82ff17132d
commit e995eb6648

View File

@@ -21,7 +21,7 @@ if ( preg_match("/[^a-z0-9_-]/", $list_name) )
exit();
}
if ( strlen($list_name) > 30 )
if ( strlen($list_name) > 50 )
{
header("Location: error.php");
exit();