diff options
author | redmatrix <git@macgirvin.com> | 2016-03-09 00:46:17 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-03-09 00:46:17 -0800 |
commit | 256cd6baace37c24b39057fdee6f4d3f1428c190 (patch) | |
tree | bb2dba53d2286de76fd0452e184873e81cc8879c /include/conversation.php | |
parent | 843cc1481af008f35804628686459437cedf3220 (diff) | |
download | volse-hubzilla-256cd6baace37c24b39057fdee6f4d3f1428c190.tar.gz volse-hubzilla-256cd6baace37c24b39057fdee6f4d3f1428c190.tar.bz2 volse-hubzilla-256cd6baace37c24b39057fdee6f4d3f1428c190.zip |
work on implementing account/channel move (as opposed to clone)
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index 39119b2bb..676067f86 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1110,6 +1110,11 @@ function status_editor($a, $x, $popup = false) { $o = ''; + require_once('include/Contact.php'); + $c = channelx_by_n($x['profile_uid']); + if($c && $c['channel_moved']) + return $o; + $geotag = (($x['allow_location']) ? replace_macros(get_markup_template('jot_geotag.tpl'), array()) : ''); $plaintext = true; |