mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
fixed typo
This commit is contained in:
parent
540da2c75c
commit
b8d6048ed3
1 changed files with 2 additions and 2 deletions
|
|
@ -176,7 +176,7 @@ class FileHandler
|
|||
*/
|
||||
function removeFile($filename)
|
||||
{
|
||||
return (($filename = self::file_exists($filename)) !== FALSE) && @unlink($filename);
|
||||
return (($filename = self::exists($filename)) !== FALSE) && @unlink($filename);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -936,7 +936,7 @@ class FileHandler
|
|||
*/
|
||||
function readIniFile($filename)
|
||||
{
|
||||
if(($filename = self::file_exists($filename)) === FALSE)
|
||||
if(($filename = self::exists($filename)) === FALSE)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue