Next wave of lesser getMessage()
[mailer.git] / inc / extensions-functions.php
index 22c40b3587e6baa08062479ffa74f126418b8370..4bc33da72f09b7a5f1f0310880290accba053f4f 100644 (file)
@@ -984,7 +984,7 @@ function createNewExtensionTask ($adminId, $subject, $ext) {
 // Creates a task for automatically deactivated (deprecated) extension
 function createExtensionDeactivationTask ($ext) {
        // Create subject line
-       $subject = sprintf("[%s:] %s", $ext, getMessage('TASK_SUBJ_EXTENSION_DEACTIVATED'));
+       $subject = sprintf("[%s:] %s", $ext, '{--TASK_SUBJ_EXTENSION_DEACTIVATED--}');
 
        // Not installed and do we have created a task for the admin?
        if ((determineTaskIdBySubject($subject) == '0') && (isExtensionInstalled($ext))) {
@@ -1109,13 +1109,13 @@ function addExtensionNotes ($ver) {
                        // Initial release
                        $content = array(
                                'ver'   => $ver,
-                               'notes' => getMessage('INITIAL_RELEASE')
+                               'notes' => '{--INITIAL_RELEASE--}'
                        );
                } else {
                        // No update notes found!
                        $content = array(
                                'ver'   => $ver,
-                               'notes' => getMessage('NO_UPDATE_NOTES')
+                               'notes' => '{--NO_UPDATE_NOTES--}'
                        );
                }