I'm using PHP Phreeze to create a CRUD application but I'm getting the following message when generating the application, the message is this:
Uninitialized string offset: 0 in modifier.lcfirst.php at line 16
The page that has the code looks like this:
function smarty_modifier_lcfirst($s) {
return strtolower( $s{0} ). substr( $s, 1 );
}
The project page, if anyone is interested, is this: Pheeze