Append the StatusNet version to all local, static CSS references

This commit is contained in:
Craig Andrews 2009-12-04 22:05:18 -05:00
parent d41a0a5ed0
commit fa66755508
1 changed files with 2 additions and 1 deletions

View File

@ -405,10 +405,11 @@ class HTMLOutputter extends XMLOutputter
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
{
if(file_exists(Theme::file($src,$theme))){
$src = Theme::path($src, $theme) . '?version=' . STATUSNET_VERSION;
$src = Theme::path($src, $theme);
}else{
$src = common_path($src);
}
$src.= '?version=' . STATUSNET_VERSION;
}
$this->element('link', array('rel' => 'stylesheet',
'type' => 'text/css',