Merge pull request #12 from box/fix_dir_separator_bug_on_windows

Fix DIRECTORY_SEPARATOR bug occurring on Windows
This commit is contained in:
Adrien Loison 2015-04-03 21:17:49 -07:00
commit 41a449f245

View File

@ -31,7 +31,7 @@ class Worksheet
*/ */
public function getDataXmlFilePath() public function getDataXmlFilePath()
{ {
return ltrim($this->dataXmlFilePath, DIRECTORY_SEPARATOR); return ltrim($this->dataXmlFilePath, '/');
} }
/** /**