From 69b94bfa8f3ecb020275124fa3aa5a7b34d8a981 Mon Sep 17 00:00:00 2001 From: Ryan Grove Date: Sat, 5 May 2007 06:30:11 +0000 Subject: [PATCH] fix undefined constant notice --- minify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minify.php b/minify.php index 3584878..4f60e69 100644 --- a/minify.php +++ b/minify.php @@ -80,7 +80,7 @@ class Minify { const TYPE_JS = 'text/javascript'; protected $files = array(); - protected $type = TYPE_JS; + protected $type = self::TYPE_JS; // -- Public Static Methods --------------------------------------------------