Ignore:
Timestamp:
Jan 17, 2011, 7:48:13 PM (13 years ago)
Author:
plg
Message:

feature 2112 added: ability to set an additional local directory
$conflocal_dir_site in local/config/multisite.inc.php

File:
1 edited

Legend:

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

    r8634 r8722  
    798798    foreach ($smarty->get_template_vars('themes') as $theme)
    799799    {
    800       $f = 'local/css/'.$theme['id'].'-rules.css';
     800      $f = PWG_LOCAL_DIR.'css/'.$theme['id'].'-rules.css';
    801801      if (file_exists(PHPWG_ROOT_PATH.$f))
    802802      {
     
    804804      }
    805805    }
    806     $f = 'local/css/rules.css';
     806    $f = PWG_LOCAL_DIR.'css/rules.css';
    807807    if (file_exists(PHPWG_ROOT_PATH.$f))
    808808    {
     
    11341134final class FileCombiner
    11351135{
    1136   const OUT_SUB_DIR = 'local/combined/';
     1136  const OUT_SUB_DIR = PWG_COMBINED_DIR;
    11371137  private $type; // js or css
    11381138  private $files = array();
Note: See TracChangeset for help on using the changeset viewer.