mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Fix incorrect use of curly braces in legacy classes
This commit is contained in:
parent
2cbfd4500c
commit
14ad62e869
4 changed files with 39 additions and 39 deletions
|
|
@ -2100,7 +2100,7 @@ class Context
|
|||
*/
|
||||
public static function normalizeFilePath($file)
|
||||
{
|
||||
if($file{0} != '/' && $file{0} != '.' && strpos($file, '://') === FALSE)
|
||||
if($file[0] != '/' && $file[0] != '.' && strpos($file, '://') === FALSE)
|
||||
{
|
||||
$file = './' . $file;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue