Fixed issue #12053: Setting bottom border color to integer 0 gives cross borders

git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@291409 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Carsten Schmitz 2009-11-29 02:34:02 +00:00
parent f8695a74b6
commit 442d157fdf
1 changed files with 1 additions and 1 deletions

View File

@ -554,7 +554,7 @@ class Spreadsheet_Excel_Writer_Format extends PEAR
);
// Return the default color, 0x7FFF, if undef,
if ($name_color == '') {
if ($name_color === '') {
return(0x7FFF);
}