Ignore:
Timestamp:
Oct 22, 2008, 3:36:11 AM (16 years ago)
Author:
rvelices
Message:

merge r2789 from branch 2.0:

  • some german language changes
  • added option for smarty $conftemplate_compile_check - default true; if false smarty doesn't check if templates need recompilation resulting in less disk accesses (good when the disk is not local)
  • load_language doesnt check first for en_uk.utf-8 directory ...
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config_default.inc.php

    r2595 r2790  
    412412
    413413// +-----------------------------------------------------------------------+
    414 // |                                debug                                  |
     414// |                            debug/performance                          |
    415415// +-----------------------------------------------------------------------+
    416416
     
    430430// die_on_sql_error: if an SQL query fails, should everything stop?
    431431$conf['die_on_sql_error'] = true;
     432
     433// if true, some language strings are replaced during template compilation
     434// (insted of template output). this results in better performance. however
     435// any change in the language file will not be propagated until you purge
     436// the compiled templates from the admin / maintenance menu
     437$conf['compiled_template_cache_language'] = false;
     438
     439// This tells Smarty whether to check for recompiling or not. Recompiling
     440// does not need to happen unless a template is changed. false results in
     441// better performance.
     442$conf['template_compile_check'] = true;
    432443
    433444// +-----------------------------------------------------------------------+
     
    696707// or other plugin variables etc
    697708$conf['local_data_dir'] = dirname(dirname(__FILE__)).'/_data';
    698 
    699 // if true, some language strings are replaced during template compilation
    700 // (insted of template output). this results in better performance. however
    701 // any change in the language file will not be propagated until you purge
    702 // the compiled templates from the admin / maintenance menu
    703 $conf['compiled_template_cache_language'] = false;
    704 
    705709?>
Note: See TracChangeset for help on using the changeset viewer.