
Kieran P - 2008-02-25 07:36:06
in the function get_gtin14_checkdigit() you use a variable called $gtin14, that doesn't exist. $this->gtin14 does. Maybe you forgot the $this-> part. Quick fix is above the
$checkdigit = ...;
line, add
$gtin14 = $this->gtin14;