@@ -483,7 +483,7 @@ |
||
483 | 483 | function parse_name($name, $type = 0, $ucfirst = true) |
484 | 484 | { |
485 | 485 | if ($type) { |
486 | - $name = preg_replace_callback('/_([a-zA-Z])/', function ($match) { |
|
486 | + $name = preg_replace_callback('/_([a-zA-Z])/', function($match) { |
|
487 | 487 | return strtoupper($match[1]); |
488 | 488 | }, $name); |
489 | 489 |