Skip to content

Commit

Permalink
fix var name
Browse files Browse the repository at this point in the history
tracks internal commit e09fbbe5a0623964da011e93fbed815c5bf2a360
  • Loading branch information
pudge committed Sep 18, 2009
1 parent 95ee27b commit e826ac5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/Edit/Edit.pm
Expand Up @@ -28,7 +28,7 @@ sub rkey {

sub initEditor {
my($self) = @_;
my $rkey = $edit->rkey;
my $rkey = $self->rkey;
unless ($rkey->create) {
errorLog($rkey->errstr);
return;
Expand Down Expand Up @@ -95,7 +95,7 @@ sub migrateAnonPreviewToUser {
$fh->setFireHose($p->{preview_fhid}, $fh_data) if keys %$fh_data > 0;
if ($p->{reskey} && $p->{hcanswer}) {
$form->{hcanswer} = $p->{hcanswer};
my $rkey = $edit->rkey($p->{reskey});
my $rkey = $self->rkey($p->{reskey});
$rkey->touch;
}
}
Expand Down

0 comments on commit e826ac5

Please sign in to comment.