From 966cc4a9862e3a4baa0c4b161cc7fc308d40268f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 10 Feb 2026 02:28:42 +0000 Subject: [PATCH] fix: change extension input from number to text to preserve leading zeros Changed extension input field type from 'number' to 'text' with pattern validation to preserve leading zeros. HTML number inputs strip leading zeros (e.g., "0123" becomes "123"), which causes issues for extensions that start with zero. The pattern="[0-9]*" attribute ensures only digits can be entered while allowing extensions with leading zeros to be properly displayed and stored. Fixes #123 --- views/quickCreate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/quickCreate.php b/views/quickCreate.php index 3fb84880b..5b907550b 100644 --- a/views/quickCreate.php +++ b/views/quickCreate.php @@ -53,7 +53,7 @@ -
+