Merge pull request #2950 from rabuzarus/berlin_fix_post_preview

Bugfix: preview has sometimes phantom mentions and tags
This commit is contained in:
Tobias Diekershoff 2016-11-20 16:46:31 +01:00 committed by GitHub
commit dd4a23070c
1 changed files with 3 additions and 0 deletions

View File

@ -744,6 +744,9 @@ function item_post(&$a) {
if($preview) {
require_once('include/conversation.php');
// We set the datarray ID to -1 because in preview mode the dataray
// doesn't have an ID.
$datarray["id"] = -1;
$o = conversation($a,array(array_merge($contact_record,$datarray)),'search', false, true);
logger('preview: ' . $o);
echo json_encode(array('preview' => $o));