aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Willingham <beardyunixer@beardyunixer.com>2014-10-03 00:57:07 +0100
committerThomas Willingham <beardyunixer@beardyunixer.com>2014-10-03 00:57:07 +0100
commit09e0b4e2a18875f3b9df095f06e0829c3a59961b (patch)
tree4472edcc5e92b445fa97ed1ea7d23b78b82f9ac1
parentdf70c2c9b62365c9b0feb8a482aef1ac626fabd6 (diff)
downloadvolse-hubzilla-09e0b4e2a18875f3b9df095f06e0829c3a59961b.tar.gz
volse-hubzilla-09e0b4e2a18875f3b9df095f06e0829c3a59961b.tar.bz2
volse-hubzilla-09e0b4e2a18875f3b9df095f06e0829c3a59961b.zip
Set timezone when creating a channel.
-rw-r--r--include/identity.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/identity.php b/include/identity.php
index ebe4c5d50..03c3bea22 100644
--- a/include/identity.php
+++ b/include/identity.php
@@ -254,8 +254,8 @@ function create_identity($arr) {
$r = q("insert into channel ( channel_account_id, channel_primary,
channel_name, channel_address, channel_guid, channel_guid_sig,
- channel_hash, channel_prvkey, channel_pubkey, channel_pageflags, channel_expire_days $perms_keys )
- values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d $perms_vals ) ",
+ channel_hash, channel_prvkey, channel_pubkey, channel_pageflags, channel_expire_days, channel_timezone $perms_keys )
+ values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d $perms_vals ) ",
intval($arr['account_id']),
intval($primary),
@@ -267,7 +267,8 @@ function create_identity($arr) {
dbesc($key['prvkey']),
dbesc($key['pubkey']),
intval($pageflags),
- intval($expire)
+ intval($expire),
+ dbesc($a->timezone)
);