From 70d6d2f2db21c001b8f56a86339a005fbad81ebd Mon Sep 17 00:00:00 2001 From: "M.Dent" Date: Wed, 29 Aug 2018 10:02:04 -0400 Subject: Micro-optimization to call_hooks() --- include/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/plugin.php') diff --git a/include/plugin.php b/include/plugin.php index 23cb2b5f6..ea3c67c2f 100755 --- a/include/plugin.php +++ b/include/plugin.php @@ -432,7 +432,7 @@ function insert_hook($hook, $fn, $version = 0, $priority = 0) { function call_hooks($name, &$data = null) { $a = 0; - if((is_array(App::$hooks)) && (array_key_exists($name, App::$hooks))) { + if (isset(App::$hooks[$name])) { foreach(App::$hooks[$name] as $hook) { $origfn = $hook[1]; if($hook[0]) -- cgit v1.2.3