From ba4f543dcfc94a48ab748d1ef0e45fbb7c64d718 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 2 Oct 2012 15:16:18 +0000 Subject: [PATCH] Commented it out again and added another one (already out) --- inc/extensions-functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inc/extensions-functions.php b/inc/extensions-functions.php index 6495a05b65..dc6b67f9b4 100644 --- a/inc/extensions-functions.php +++ b/inc/extensions-functions.php @@ -1042,7 +1042,7 @@ function createNewExtensionTask ($ext_name) { $taskId = determineTaskIdBySubject($subject); // Not installed and do we have created a task for the admin? - /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ext_name=' . $ext_name . ',taskId[' . gettype($taskId) . ']=' . $taskId); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ext_name=' . $ext_name . ',taskId[' . gettype($taskId) . ']=' . $taskId); if (((is_null($taskId)) || ($taskId == '0')) && (!isExtensionInstalled($ext_name))) { // Set default message if ext-foo is missing $message = '{%message,ADMIN_EXTENSION_TEXT_FILE_MISSING=' . $ext_name . '%}'; @@ -1080,6 +1080,7 @@ function createExtensionDeactivationTask ($ext_name) { $taskId = determineTaskIdBySubject($subject); // Not installed and do we have created a task for the admin? + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ext_name=' . $ext_name . ',taskId[' . gettype($taskId) . ']=' . $taskId); if (((is_null($taskId)) || ($taskId == '0')) && (isExtensionInstalled($ext_name))) { // Task not created so add it $taskId = createNewTask($subject, SQL_ESCAPE(loadTemplate('task_EXTENSION_deactivated', true, $ext_name)), 'EXTENSION_DEACTIVATION'); -- 2.39.2