X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fpart_export_option.pm;h=33b5e5a675600aae7100b48c94448f5bec3f94eb;hp=4ce70b4cd8bbaceabf6e22be8751a4979506696d;hb=c2146ae32fdef80049abfa13098db2d45f3ebdd5;hpb=b03df92e48df653460cb8b6034a06dd1de6f4095 diff --git a/FS/FS/part_export_option.pm b/FS/FS/part_export_option.pm index 4ce70b4cd..33b5e5a67 100644 --- a/FS/FS/part_export_option.pm +++ b/FS/FS/part_export_option.pm @@ -38,9 +38,9 @@ currently supported: =item exportnum - export (see L) -=item option - option name +=item optionname - option name -=item opeionvalue - option value +=item optionvalue - option value =back @@ -105,8 +105,8 @@ sub check { my $error = $self->ut_numbern('optionnum') || $self->ut_number('exportnum') - || $self->ut_alpha('option') - || $self->ut_textn('optionvalue') + || $self->ut_alpha('optionname') + || $self->ut_anything('optionvalue') ; return $error if $error; @@ -115,7 +115,7 @@ sub check { #check options & values? - ''; #no error + $self->SUPER::check; } =back