From a362496db280d0844dbc319c63d50ad48f469699 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 4 Jan 2020 22:12:19 +0000 Subject: [PATCH] Allow apostrophes to be included in recipe names --- modules/ORB.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ORB.pm b/modules/ORB.pm index 1227932..97c16c0 100755 --- a/modules/ORB.pm +++ b/modules/ORB.pm @@ -74,7 +74,7 @@ sub new { # Formats of accepted types $self -> {"formats"} = { - "recipename" => '^[-\w,. ]+$', + "recipename" => '^[-\w,.\' ]+$', "tags" => '^[-\w ]+$', "quantity" => '^[\d\w./]+$', "sepname" => '^[-\w,.:()&;#*\ ]{1,255}$',