aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-10-03 16:52:01 -0700
committerfriendica <info@friendica.com>2014-10-03 16:52:01 -0700
commitf618e0211795ce89f612b0108544f4e3d39d25fd (patch)
treecf6f043df0c9475aa4651b53fdeaa1ac41f1c21a /include
parentec604a41582d9bd8b659d690c895eb6271b09310 (diff)
parent62f7bf51ba3fde8d9427f524ef000000e8852da6 (diff)
downloadvolse-hubzilla-f618e0211795ce89f612b0108544f4e3d39d25fd.tar.gz
volse-hubzilla-f618e0211795ce89f612b0108544f4e3d39d25fd.tar.bz2
volse-hubzilla-f618e0211795ce89f612b0108544f4e3d39d25fd.zip
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'include')
-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..fc07bd4e4 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, '%s' $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)
);