--- ./lib/TWiki/Plugins/ProjectPlannerPlugin.pm 2006-08-23 17:30:07.000000000 -0700 +++ www/twiki/lib/TWiki/Plugins/ProjectPlannerPlugin.pm 2006-10-13 17:31:08.000000000 -0700 @@ -785,8 +785,8 @@ sub ppSavePage() $text =~ s/PPSUMMARY/$summary/geo; $text =~ s/PPID/$id/geo; - my @metaargs = ( "name" => "$parent" ); - TWiki::Meta::put( "TOPICPARENT", @metaargs ); + my $meta = new TWiki::Meta( undef, $web, $title); + $meta->put( 'TOPICPARENT', { 'name' => $parent } ); # save new page and open in browser my $error = TWiki::Func::saveTopicText( $web, $title, $text );