mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-25 01:31:26 +00:00
fixed regression https://github.com/PHPOffice/PHPExcel/commit/f3c4d056ed7f4c23a2fa17ee0fb3910526a3634a#L1R621
minor phpdoc fixes
This commit is contained in:
@@ -621,7 +621,7 @@ class PHPExcel_Shared_String
|
||||
public static function StrToTitle($pValue = '')
|
||||
{
|
||||
if (function_exists('mb_convert_case')) {
|
||||
return mb_convert_case($pValue, MB_CASE_LOWER, "UTF-8");
|
||||
return mb_convert_case($pValue, MB_CASE_TITLE, "UTF-8");
|
||||
}
|
||||
return ucwords($pValue);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user