nuovo / spreadsheet-reader

A PHP spreadsheet reader (Excel XLS and XLSX, OpenOffice ODS, and variously separated text files) with a singular goal of getting the data out, efficiently
http://www.nuovo.lv/
Other
674 stars 498 forks source link

class loader fix #61

Closed i-bash closed 9 years ago

i-bash commented 10 years ago

This line in SpreadsheetReader.php:

            if (!class_exists('SpreadsheetReader_'.$Type))

should be changed to:

            if (!class_exists('SpreadsheetReader_'.$Type,false))

to prevent autoloading of the class.

pilsetnieks commented 9 years ago

Thanks, this is fixed in v.0.5.8.