fix thumbnailing of uploaded images via the RTE

This commit is contained in:
Colin Kuskie 2007-02-28 05:35:47 +00:00
parent 218415ad27
commit 85ecb2364a
3 changed files with 12 additions and 9 deletions

View file

@ -433,10 +433,10 @@ A reference to the current session.
Accepts any parameters specified by the definition() method. This parameter set can be specified by either a hash or hash reference, and can be tagged or not. Here are examples:
my $obj = $class->new({ name=>"this", value=>"that"});
my $obj = $class->new({ -name=>"this", -value=>"that"});
my $obj = $class->new(name=>"this", value=>"that");
my $obj = $class->new(-name=>"this", -value=>"that");
my $obj = $class->new($session, { name=>"this", value=>"that"});
my $obj = $class->new($session, { -name=>"this", -value=>"that"});
my $obj = $class->new($session, name=>"this", value=>"that");
my $obj = $class->new($session, -name=>"this", -value=>"that");
Please note that an id attribute is automatically added to every form element with a name of name_formId. So if your form element has a name of "description" then the id attribute assigned to it would be "description_formId".