From afb647bedf5fc4962be982bba8fa2ded47e5460c Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Thu, 24 Nov 2022 09:31:24 +0800 Subject: [PATCH] * Fix bug#30187. --- module/branch/model.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/module/branch/model.php b/module/branch/model.php index 5c62d826d8..a1a84fd325 100644 --- a/module/branch/model.php +++ b/module/branch/model.php @@ -782,4 +782,18 @@ class branchModel extends model return $targetBranch; } + + /** + * Judge an action is clickable or not.. + * + * @param object $branch + * @param string $action + * @static + * @access public + * @return bool + */ + public static function isClickable($branch, $action) + { + return true; + } }