From: Jan Schneider Date: Mon, 14 Sep 2009 08:00:15 +0000 (+0200) Subject: Fix constant usage. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=edd97783c55337c8b70b669a85d69847afbcf9aa;p=horde.git Fix constant usage. --- diff --git a/framework/Release/lib/Horde/Release.php b/framework/Release/lib/Horde/Release.php index 87b17ac3a..e24a29fa4 100644 --- a/framework/Release/lib/Horde/Release.php +++ b/framework/Release/lib/Horde/Release.php @@ -602,7 +602,7 @@ class Horde_Release if ($this->_latest) { $subject .= ' (final)'; } - if (in_array($version['tag_list'], FOCUS_MAJORSECURITY)) { + if (in_array(self::FOCUS_MAJORSECURITY, $version['tag_list'])) { $subject = '[SECURITY] ' . $subject; } $headers = array('From' => $this->_options['ml']['from'],