Changeset 19696


Ignore:
Timestamp:
Dec 31, 2012, 3:07:12 PM (11 years ago)
Author:
flop25
Message:

bug:2797 added !defined('IN_ADMIN') to prefilter_local_css to exlude the local css files from the administration part

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/template.class.php

    r19576 r19696  
    109109    {
    110110      $this->set_theme($root, $theme, $path);
    111       $this->set_prefilter( 'header', array('Template', 'prefilter_local_css') );
     111      if (!defined('IN_ADMIN'))
     112      {
     113        $this->set_prefilter( 'header', array('Template', 'prefilter_local_css') );
     114      }
    112115    }
    113116    else
Note: See TracChangeset for help on using the changeset viewer.