From 01cbf14a5478c6ef4293b897724b38cdf9b0758b Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Mon, 8 Aug 2022 08:53:22 +0000 Subject: [PATCH] changed FALASE to FALSE in subversionmodel.php --- codepot/src/codepot/models/subversionmodel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codepot/src/codepot/models/subversionmodel.php b/codepot/src/codepot/models/subversionmodel.php index 91c7cf6c..ae3c72ac 100644 --- a/codepot/src/codepot/models/subversionmodel.php +++ b/codepot/src/codepot/models/subversionmodel.php @@ -262,7 +262,7 @@ class SubversionModel extends CodeRepoModel if ($rev == SVN_REVISION_HEAD) { $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 {