version 1.41, 2001/08/09 15:35:47
|
version 1.42, 2001/08/13 21:44:24
|
Line 171 sub end_numericalresponse {
|
Line 171 sub end_numericalresponse {
|
} |
} |
|
|
sub start_stringresponse { |
sub start_stringresponse { |
return start_numericalresponse(@_); |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
|
my $result; |
|
if ($target eq 'meta') { |
|
$result=&Apache::response::meta_package_write('stringresponse'); |
|
} else { |
|
$result.=&start_numericalresponse(@_); |
|
} |
|
return $result; |
} |
} |
|
|
sub end_stringresponse { |
sub end_stringresponse { |