Fix default style for Fill Pattern

This commit is contained in:
MarkBaker 2016-01-01 16:41:35 +00:00
parent a27e053354
commit e6ded71172

View File

@ -36,6 +36,6 @@ class PHPExcel_Reader_Excel5_Style_FillPattern
if (isset(self::$map[$index])) { if (isset(self::$map[$index])) {
return self::$map[$index]; return self::$map[$index];
} }
return self::FILL_NONE; return PHPExcel_Style_Fill::FILL_NONE;
} }
} }