From 306ae27e6635b9453f5f5dbfe3b01ec864bf1abd Mon Sep 17 00:00:00 2001 From: Sean Burke Date: Mon, 10 Feb 2014 04:58:14 -0500 Subject: [PATCH] Removed the validation debug line which allowed all barcode formats --- inc/classes/Barcode.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/classes/Barcode.class.php b/inc/classes/Barcode.class.php index 03cd0f2..28ec880 100644 --- a/inc/classes/Barcode.class.php +++ b/inc/classes/Barcode.class.php @@ -87,7 +87,7 @@ function validate(){ $this->error = 'The barcode '.$this->code.' is not valid'; } - return true; //use this to bypass barcode validation + //return true; //use this to bypass barcode validation return $value; }