]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Incorrect constant for theme warning
authorEvan Prodromou <evan@status.net>
Tue, 27 Sep 2011 15:32:20 +0000 (11:32 -0400)
committerEvan Prodromou <evan@status.net>
Tue, 27 Sep 2011 15:32:20 +0000 (11:32 -0400)
lib/theme.php

index 1239e317f4e9cab68440a00fae206a4ccbb76838..fbcbbe052a3934eaad47fdd94d28ed15f1506dfd 100644 (file)
@@ -106,9 +106,9 @@ class Theme
 
         // Ruh roh. Fall back to default, then.
 
-        common_log(LOG_WARN, sprintf("Unable to find theme '%s', falling back to default theme '%s'",
-                                     $name,
-                                     Theme::FALLBACK));
+        common_log(LOG_WARNING, sprintf("Unable to find theme '%s', falling back to default theme '%s'",
+                                        $name,
+                                        Theme::FALLBACK));
 
         $this->name = Theme::FALLBACK;
         $this->dir  = $instroot.'/'.Theme::FALLBACK;