changed FALASE to FALSE in subversionmodel.php

This commit is contained in:
hyung-hwan 2022-08-08 08:53:22 +00:00
parent d01e5a2fc2
commit 01cbf14a54

View File

@ -262,7 +262,7 @@ class SubversionModel extends CodeRepoModel
if ($rev == SVN_REVISION_HEAD) if ($rev == SVN_REVISION_HEAD)
{ {
$info = @svn_info($url, FALSE, $rev); $info = @svn_info($url, FALSE, $rev);
if ($info === FALSE || $info === NULL || count($info) != 1) return FALASE; if ($info === FALSE || $info === NULL || count($info) != 1) return FALSE;
} }
else else
{ {