From 4a80b883ab27267f801eec825fb9c8228ba696ab Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Thu, 7 Jan 2010 09:09:39 +0000 Subject: [PATCH] Oops thanks rxu, fixes r10309 refs #54465 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10396 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/acm/acm_memory.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpBB/includes/acm/acm_memory.php b/phpBB/includes/acm/acm_memory.php index 1a672ad7e1..efbfd4dd62 100644 --- a/phpBB/includes/acm/acm_memory.php +++ b/phpBB/includes/acm/acm_memory.php @@ -50,6 +50,8 @@ class acm_memory if (isset($this->function) && !function_exists($this->function)) { + global $acm_type; + trigger_error("The required function [{$this->function}] is not available for the ACM module $acm_type.", E_USER_ERROR); } }