%FORMFIELD{...}%
simply ignores the
rev
parameter despite the documentation.
--
TWiki:Main/HideyoImazu
- 2013-07-17
Please make sure that the
rev=...
URL parameter remains supported.
Wondering why the rev parameter on FORMFIELD is not supported. Current SVN trunk:
sub FORMFIELD {
my ( $this, $params, $topic, $web ) = @_;
my $cgiQuery = $this->{request};
my $cgiRev = $cgiQuery->param('rev') if( $cgiQuery );
$params->{rev} = $cgiRev unless( $params->{rev} );
return $this->renderer->renderFORMFIELD( $params, $topic, $web );
}
--
TWiki:Main.PeterThoeny
- 2013-07-17
See also related
Item7298.
--
TWiki:Main.PeterThoeny
- 2013-07-18
TWiki::FORMFIELD() is fine. But TWiki::Render::renderFORMFIELD() ignored the rev parameter.
--
TWiki:Main.HideyoImazu
- 2013-07-18