Skip Menu |

This queue is for tickets about the Document-Info CPAN distribution.

Report information
The Basics
Id: 63157
Status: new
Priority: 0/
Queue: Document-Info

People
Owner: Nobody in particular
Requestors: KGOESS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: assignment = s/b comparison ==
Happened to notice there's an assignment = that should be a comparison == Index: perllib/OLE/DocumentInfo.pm =================================================================== --- perllib/OLE/DocumentInfo.pm (revision 26720) +++ perllib/OLE/DocumentInfo.pm (working copy) @@ -262,7 +262,7 @@ $S -> _DocType ( cMSExcel() ); if ($biffType==0x500) { $S -> _DocRev ( "5.0,95" ); - } elsif ($biffType=0x600) { + } elsif ($biffType==0x600) { $S -> _DocRev ( "97,2000" ); } else { $S -> _DocRev ( ">2000" );