lcfirst() and php
-
Hi
The plugin doesn’t work with php < 5.3 due to the lcfirst function which is not supported by php < 5.3.
shashinAutoLoader.php line 30
// shashin has lower-case directory names
if (strpos($classPath, ‘/’) !== false) {
$classPath = lcfirst($classPath);
}Probably substr would be the easiest fix, as many have pointed out in case of similar issues.
Regards,
K
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘lcfirst() and php’ is closed to new replies.