Exxcel 2003 XML working pattern property (#54)

This commit is contained in:
Arthur-min 2016-12-14 14:21:16 +01:00 committed by Adrien Crivelli
parent 30a5e4b893
commit a5c21a7b43
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ class Excel2003XML extends BaseReader implements IReader
$this->styles[$styleID]['fill']['color']['rgb'] = substr($styleAttributeValue, 1); $this->styles[$styleID]['fill']['color']['rgb'] = substr($styleAttributeValue, 1);
break; break;
case 'Pattern': case 'Pattern':
$this->styles[$styleID]['fill']['type'] = substr($styleAttributeValue, 1); $this->styles[$styleID]['fill']['type'] = strtolower($styleAttributeValue);
break; break;
} }
} }