Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Daylight Savings Check #8

Closed
frdaniel opened this issue Mar 1, 2012 · 0 comments
Closed

Daylight Savings Check #8

frdaniel opened this issue Mar 1, 2012 · 0 comments

Comments

@frdaniel
Copy link

frdaniel commented Mar 1, 2012

Guys,

Minor issue, but I think you forgot the '%' in your check for daylight savings. Line 217 in config.master.php:

$env_config['daylight_savings']         = date('I') ? 'y' : 'n'; // Autodetect DST

Should be this:

$env_config['daylight_savings']         = date('%I') ? 'y' : 'n'; // Autodetect DST

Added the '%' to date('**%**I)

Thanks.
Dan

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants