From e995eb6648be75dd3235531bd10132806b45357a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20S=C3=BC=C3=9Fenguth?= Date: Sat, 12 Feb 2022 21:20:50 +0100 Subject: [PATCH] Changed maximum length of list name from 30 to 50 chars --- edit_list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edit_list.php b/edit_list.php index 1ed8688..1d616aa 100644 --- a/edit_list.php +++ b/edit_list.php @@ -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();