Fixed missing change of maximum length of list name for the save list procedure

This commit is contained in:
2022-04-13 13:45:38 +02:00
parent e995eb6648
commit 9bff04b518

View File

@@ -40,7 +40,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();