Skip to content

Commit

Permalink
Item14367: META topic= override not working.
Browse files Browse the repository at this point in the history
  • Loading branch information
gac410 committed Apr 3, 2017
1 parent 40c0ec3 commit 988d93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/Foswiki/Macros/META.pm
Expand Up @@ -25,7 +25,7 @@ sub META {
my ( $nweb, $ntopic ) =
Foswiki::Func::normalizeWebTopicName( $topicObject->web,
$params->{topic} );
if ( $nweb ne $topicObject->web && $ntopic ne $topicObject->topic ) {
if ( $nweb ne $topicObject->web || $ntopic ne $topicObject->topic ) {
my $meta = new Foswiki::Meta( $this, $nweb, $ntopic );
$topicObject = $meta;
}
Expand Down

0 comments on commit 988d93c

Please sign in to comment.