From: <chr...@us...> - 2006-05-16 20:19:07
|
Revision: 871 Author: chromatic Date: 2006-05-16 13:18:57 -0700 (Tue, 16 May 2006) ViewCVS: http://svn.sourceforge.net/everydevel/?rev=871&view=rev Log Message: ----------- r16731@windwheel: chromatic | 2006-05-16 13:13:44 -0700 Fix uninitialized value warning in applyXMLFix(). Modified Paths: -------------- trunk/ebase/lib/Everything/Node/nodeball.pm Property Changed: ---------------- trunk/ebase/ Property changes on: trunk/ebase ___________________________________________________________________ Name: svk:merge - a6810612-c0f9-0310-9d3e-a9e4af8c5745:/ebase/offline:16729 + a6810612-c0f9-0310-9d3e-a9e4af8c5745:/ebase/offline:16731 Modified: trunk/ebase/lib/Everything/Node/nodeball.pm =================================================================== --- trunk/ebase/lib/Everything/Node/nodeball.pm 2006-05-16 19:29:06 UTC (rev 870) +++ trunk/ebase/lib/Everything/Node/nodeball.pm 2006-05-16 20:18:57 UTC (rev 871) @@ -117,7 +117,7 @@ my ( $this, $FIX, $printError ) = @_; return Everything::Node::setting::applyXMLFix( $this, $FIX, $printError ) - if $FIX->{fixBy} eq 'setting'; + if exists $FIX->{fixBy} and $FIX->{fixBy} eq 'setting'; return $this->SUPER( $FIX, $printError ); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |