Missing POD for Textarea, SelectRichEditor

This commit is contained in:
Colin Kuskie 2009-04-08 03:40:41 +00:00
parent b8ba4e2118
commit 83e7163f31
2 changed files with 9 additions and 1 deletions

View file

@ -116,7 +116,7 @@ sub isDynamicCompatible {
#----------------------------------------------------------------------------
=head2 new
=head2 getOptions
Create a new WebGUI::Form::SelectRichEditor object and populate it with all
the available Rich Text Editor assets.

View file

@ -195,6 +195,14 @@ sub toHtml {
return $out;
}
#-------------------------------------------------------------------
=head2 getValueAsHtml
Returns the form value as text, encoding HTML entities.
=cut
sub getValueAsHtml {
my $self = shift;
my $value = $self->SUPER::getValueAsHtml(@_);