fix thumbnailing of uploaded images via the RTE
This commit is contained in:
parent
218415ad27
commit
85ecb2364a
3 changed files with 12 additions and 9 deletions
|
|
@ -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".
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue