From c7cd001aaefb5d0f1327615f91c72b3bae377b50 Mon Sep 17 00:00:00 2001 From: konrad Date: Sun, 29 Jun 2008 10:14:06 +0000 Subject: [PATCH] make barcodes unambiguous git-svn-id: https://silmor.de/svn/softmagic/smoke/trunk@163 6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33 --- www/inc/classes/random.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/www/inc/classes/random.php b/www/inc/classes/random.php index ff154af..ad638f0 100644 --- a/www/inc/classes/random.php +++ b/www/inc/classes/random.php @@ -53,7 +53,7 @@ function getSalt() /**return a new Code-39 capable ID; length is the amount of characters*/ function getCode39ID($length) { - $c39="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; + $c39="23456789ABCDEFGHJKLMNPRSTUVWXYZ+"; $rnd=getRandom($length*8); $ret=""; for($i=0;$i<$length;$i++){ -- 1.7.2.5