Browse Source

default timezone

pull/40/head
Savetheinternet 13 years ago
parent
commit
24932a15bf
  1. 3
      inc/config.php
  2. 2
      inc/functions.php

3
inc/config.php

@ -588,6 +588,9 @@
// http://php.net/manual/en/function.date.php
$config['post_date'] = 'm/d/y (D) H:i:s';
// Timezone
$config['timezone'] = 'America/Los_Angeles';
// Always act as if they had typed "noko" in the email field no mattter what
$config['always_noko'] = false;

2
inc/functions.php

@ -25,6 +25,8 @@
$debug['start'] = time();
}
date_default_timezone_set($config['timezone']);
if(!isset($config['url_stylesheet']))
$config['url_stylesheet'] = $config['root'] . 'style.css';
if(!isset($config['url_javascript']))

Loading…
Cancel
Save