From: Craig Andrews Date: Thu, 6 Aug 2009 17:05:40 +0000 (-0400) Subject: Check theme first for CSS files, then use the non-theme path. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e386a75d1b5271cfcd51825d0d2a420ef66d3622;p=quix0rs-gnu-social.git Check theme first for CSS files, then use the non-theme path. Fixes CSS links in plugins --- diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 74876523a6..f4445b44f8 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -376,7 +376,11 @@ class HTMLOutputter extends XMLOutputter $url = parse_url($src); if(! ($url->scheme || $url->host || $url->query || $url->fragment)) { - $src = theme_path($src) . '?version=' . LACONICA_VERSION; + if(file_exists(theme_file($src,$theme))){ + $src = theme_path($src, $theme) . '?version=' . LACONICA_VERSION; + }else{ + $src = common_path($src); + } } $this->element('link', array('rel' => 'stylesheet', 'type' => 'text/css',