mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2025-04-02 21:06:19 +03:00
Merge pull request #352 from ke20/patch-1
Bug "Undefined variable: options"
This commit is contained in:
commit
cef1b274cd
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ class PHPExcel_Settings
|
|||
if (is_null(self::$_libXmlLoaderOptions)) {
|
||||
self::setLibXmlLoaderOptions(LIBXML_DTDLOAD | LIBXML_DTDATTR);
|
||||
}
|
||||
@libxml_disable_entity_loader($options == (LIBXML_DTDLOAD | LIBXML_DTDATTR));
|
||||
@libxml_disable_entity_loader(self::$_libXmlLoaderOptions == (LIBXML_DTDLOAD | LIBXML_DTDATTR));
|
||||
return self::$_libXmlLoaderOptions;
|
||||
} // function getLibXmlLoaderOptions
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue