Call dataTypeForValue() method in self rather than PHPExcel_Cell_Datatype

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@74695 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Mark Baker 2011-05-30 22:20:13 +00:00
parent dd7674a36a
commit f041495fb8
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class PHPExcel_Cell_DefaultValueBinder implements PHPExcel_Cell_IValueBinder
}
// Set value explicit
$cell->setValueExplicit( $value, PHPExcel_Cell_DataType::dataTypeForValue($value) );
$cell->setValueExplicit( $value, self::dataTypeForValue($value) );
// Done!
return true;