From d85a4fdecee752cf9f26a9aeea579ef62ef86544 Mon Sep 17 00:00:00 2001 From: kenjis Date: Thu, 13 Jan 2022 18:44:59 +0900 Subject: [PATCH] fix: the error message Co-authored-by: John Paul E. Balandan, CPA <51850998+paulbalandan@users.noreply.github.com> --- system/Language/en/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Language/en/Database.php b/system/Language/en/Database.php index eaa3be67b3..63a18498e9 100644 --- a/system/Language/en/Database.php +++ b/system/Language/en/Database.php @@ -27,5 +27,5 @@ return [ 'fieldNotExists' => 'Field `{0}` not found.', 'forEmptyInputGiven' => 'Empty statement is given for the field `{0}`', 'forFindColumnHaveMultipleColumns' => 'Only single column allowed in Column name.', - 'methodNotAvailable' => 'You cannot use `{1}` in `{0}`. The CodeIgniter\Model is not the Query Builder.', + 'methodNotAvailable' => 'You cannot use `{1}` in `{0}`. This is a method of the `Query Builder` class.', ];