]> git.mxchange.org Git - friendica.git/commitdiff
make sure default timezone is set in external processes
authorfriendica <info@friendica.com>
Tue, 12 Jun 2012 02:52:46 +0000 (19:52 -0700)
committerfriendica <info@friendica.com>
Tue, 12 Jun 2012 02:52:46 +0000 (19:52 -0700)
boot.php
index.php
mod/profile.php

index 0ae0901d2260016732f0ac4a803f66aff6ae5022..dfe07257835fd89df7d6ed8d8ad384737ee647f5 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -4,6 +4,7 @@ require_once('include/config.php');
 require_once('include/network.php');
 require_once('include/plugin.php');
 require_once('include/text.php');
+require_once('include/datetime.php');
 require_once('include/pgettext.php');
 require_once('include/nav.php');
 require_once('include/cache.php');
@@ -333,6 +334,12 @@ if(! class_exists('App')) {
 
                function __construct() {
 
+                       global $default_timezone;
+
+                       $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
+
+                       date_default_timezone_set($this->timezone);
+
                        $this->config = array();
                        $this->page = array();
                        $this->pager= array();
index 94329eedc833a150f5cab8f27693fa9d3da1ed5c..6967d0f3155a4d980f6cb088d4e998d5af33d9ed 100644 (file)
--- a/index.php
+++ b/index.php
@@ -59,8 +59,7 @@ if(! $install) {
 /**
  *
  * Important stuff we always need to do.
- * Initialise authentication and  date and time. 
- * Create the HTML head for the page, even if we may not use it (xml, etc.)
+ *
  * The order of these may be important so use caution if you think they're all
  * intertwingled with no logical order and decide to sort it out. Some of the
  * dependencies have changed, but at least at one time in the recent past - the 
@@ -68,12 +67,6 @@ if(! $install) {
  *
  */
 
-require_once("datetime.php");
-
-$a->timezone = (($default_timezone) ? $default_timezone : 'UTC');
-
-date_default_timezone_set($a->timezone);
-
 session_start();
 
 /**
index 3a77faf19a3e834a6d6fd5ba40aeccb6fc64ab6c..2ac8fe586deefa181f5c27463d9f5b753c6e25be 100644 (file)
@@ -67,7 +67,7 @@ function profile_init(&$a) {
 
 function profile_content(&$a, $update = 0) {
 
-       $category = datequery = $datequery2 = '';
+       $category = $datequery = $datequery2 = '';
 
        if($a->argc > 2) {
                for($x = 2; $x < $a->argc; $x ++) {