Skip to content

Commit

Permalink
Correcting logic on DST setting
Browse files Browse the repository at this point in the history
  • Loading branch information
erikreagan committed May 10, 2012
1 parent 7f1f5f1 commit bdef574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.master.php
Expand Up @@ -215,7 +215,7 @@
* Other system settings * Other system settings
*/ */
$env_config['new_version_check'] = 'n'; // no slowing my CP homepage down with this $env_config['new_version_check'] = 'n'; // no slowing my CP homepage down with this
$env_config['daylight_savings'] = date('I') ? 'y' : 'n'; // Autodetect DST $env_config['daylight_savings'] = ((bool) date('I')) ? 'y' : 'n'; // Autodetect DST
$env_config['use_category_name'] = 'y'; $env_config['use_category_name'] = 'y';
$env_config['reserved_category_word'] = 'category'; $env_config['reserved_category_word'] = 'category';
$env_config['word_separator'] = 'dash'; // dash|underscore $env_config['word_separator'] = 'dash'; // dash|underscore
Expand Down

0 comments on commit bdef574

Please sign in to comment.