From 9bff04b5189f58c783eb68a4eba56b8b7d05b2fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20S=C3=BC=C3=9Fenguth?= Date: Wed, 13 Apr 2022 13:45:38 +0200 Subject: [PATCH] Fixed missing change of maximum length of list name for the save list procedure --- save_list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/save_list.php b/save_list.php index 811807c..8773fc9 100644 --- a/save_list.php +++ b/save_list.php @@ -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();