so Search.tsf and Search.rdf work
[freeside.git] / FS / FS / part_export_option.pm
index 1ce0de6..33b5e5a 100644 (file)
@@ -40,7 +40,7 @@ currently supported:
 
 =item optionname - option name
 
-=item opeionvalue - option value
+=item optionvalue - option value
 
 =back
 
@@ -106,7 +106,7 @@ sub check {
     $self->ut_numbern('optionnum')
     || $self->ut_number('exportnum')
     || $self->ut_alpha('optionname')
-    || $self->ut_textn('optionvalue')
+    || $self->ut_anything('optionvalue')
   ;
   return $error if $error;
 
@@ -115,7 +115,7 @@ sub check {
 
   #check options & values?
 
-  ''; #no error
+  $self->SUPER::check;
 }
 
 =back