CommentFileSizeAuthor
Archive.zip93.92 KBaxelm
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

axelm’s picture

In addition to the attached files, change in template.php

function _platon_inject_css_override() {
if ($file = _platon_get_css_override_file()) {
$realpath = drupal_realpath($file->uri);
$path = str_replace($_SERVER['DOCUMENT_ROOT'].'/','',$realpath);
drupal_add_css($path, array('group' => CSS_THEME));
}
}

in order to have:

function _platon_inject_css_override() {
if ($file = _platon_get_css_override_file()) {
drupal_add_css($file->uri, array('group' => CSS_THEME));
}
}

Jamesap’s picture

Status: Active » Patch (to be ported)

Pushed to platon

axelm’s picture

Status: Patch (to be ported) » Closed (fixed)