Skip to content

Commit

Permalink
Item14351: fix uninitialized value warning when changerows is used wi…
Browse files Browse the repository at this point in the history
…th EditRowPlugin
  • Loading branch information
fschlich committed Mar 23, 2017
1 parent 23c0bf5 commit df9938a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EditRowPlugin/lib/Foswiki/Plugins/EditRowPlugin/Table.pm
Expand Up @@ -396,7 +396,7 @@ sub render {

push(
@out,
Foswiki::Render::html( 'a', { name => "erp_$this->{id}" } )
Foswiki::Render::html( 'a', { name => "erp_${id}" } )
. Foswiki::Render::html( 'a',
{ href => $url, title => $title }, $button )
. '<br />'
Expand Down Expand Up @@ -429,7 +429,7 @@ sub render {
erp_active_row => -2,
erp_unchanged => 1,
erp_action => 'addRow',
'#' => 'erp_' . $this->{id}
'#' => "erp_${id}"
);

# Full table disabled, but not row
Expand Down

0 comments on commit df9938a

Please sign in to comment.