Skip to content

Commit

Permalink
Item9844: Merge feature no longer working
Browse files Browse the repository at this point in the history
Fix provided by Crawford Currie. Checked by me after successful testing


git-svn-id: http://svn.foswiki.org/branches/Release01x01@9622 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
KennethLavrsen authored and KennethLavrsen committed Oct 19, 2010
1 parent aa0badb commit 1ed0104
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/lib/Foswiki/UI/Edit.pm
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ sub init_edit {
|| 'text/html';
my $parentTopic = $query->param('topicparent') || '';
my $ptext = $query->param('text');
my $revision = Foswiki::Store::cleanUpRevID( $query->param('rev') );
my $revision = $query->param('rev');
$revision = Foswiki::Store::cleanUpRevID($revision) if defined $revision;

Foswiki::UI::checkWebExists( $session, $web, 'edit' );

Expand Down

0 comments on commit 1ed0104

Please sign in to comment.