Fix constant usage.
authorJan Schneider <jan@horde.org>
Mon, 14 Sep 2009 08:00:15 +0000 (10:00 +0200)
committerJan Schneider <jan@horde.org>
Mon, 14 Sep 2009 08:03:12 +0000 (10:03 +0200)
framework/Release/lib/Horde/Release.php

index 87b17ac..e24a29f 100644 (file)
@@ -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'],