From 399ec2786936a1ea6e56fcc26c560da59bc1408d Mon Sep 17 00:00:00 2001 From: Curtis Conard Date: Mon, 27 Jan 2025 06:56:55 -0500 Subject: [PATCH] external survey url maxlength --- ajax/ticketsatisfaction.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ajax/ticketsatisfaction.php b/ajax/ticketsatisfaction.php index 0801eca0b24..c077db8ff3e 100644 --- a/ajax/ticketsatisfaction.php +++ b/ajax/ticketsatisfaction.php @@ -115,7 +115,10 @@ echo "" . __('URL') . ""; echo ""; - echo Html::input('inquest_URL', ['value' => $entity->fields['inquest_URL']]); + echo Html::input('inquest_URL', [ + 'value' => $entity->fields['inquest_URL'], + 'maxlength' => 255, + ]); echo ""; }