From 3063caea83324e007a865e01fb2a5bf7584c49fd Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 27 Sep 2011 11:32:20 -0400 Subject: [PATCH] Incorrect constant for theme warning --- lib/theme.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/theme.php b/lib/theme.php index 1239e317f4..fbcbbe052a 100644 --- a/lib/theme.php +++ b/lib/theme.php @@ -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;