From: Roland Häder <roland@mxchange.org>
Date: Tue, 2 Oct 2012 15:16:18 +0000 (+0000)
Subject: Commented it out again and added another one (already out)
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ba4f543dcfc94a48ab748d1ef0e45fbb7c64d718;p=mailer.git

Commented it out again and added another one (already out)
---

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');