diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-10-03 00:57:07 +0100 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-10-03 00:57:07 +0100 |
commit | 09e0b4e2a18875f3b9df095f06e0829c3a59961b (patch) | |
tree | 4472edcc5e92b445fa97ed1ea7d23b78b82f9ac1 /include | |
parent | df70c2c9b62365c9b0feb8a482aef1ac626fabd6 (diff) | |
download | volse-hubzilla-09e0b4e2a18875f3b9df095f06e0829c3a59961b.tar.gz volse-hubzilla-09e0b4e2a18875f3b9df095f06e0829c3a59961b.tar.bz2 volse-hubzilla-09e0b4e2a18875f3b9df095f06e0829c3a59961b.zip |
Set timezone when creating a channel.
Diffstat (limited to 'include')
-rw-r--r-- | include/identity.php | 7 |
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) ); |