From: Evan Prodromou Date: Tue, 27 Sep 2011 15:32:20 +0000 (-0400) Subject: Incorrect constant for theme warning X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3063caea83324e007a865e01fb2a5bf7584c49fd;p=quix0rs-gnu-social.git Incorrect constant for theme warning --- 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;