diff options
author | Mario <mario@mariovavti.com> | 2021-02-15 10:15:57 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-15 10:15:57 +0000 |
commit | d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d (patch) | |
tree | e16495d2f64d2c5d5e01394178d810a060895643 /include | |
parent | ed993920015cfae7f0e939b1733ab125c85e1dda (diff) | |
download | volse-hubzilla-d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d.tar.gz volse-hubzilla-d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d.tar.bz2 volse-hubzilla-d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d.zip |
fix preview generating duplicate IDs
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 08d16a413..1b0db52e3 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -923,7 +923,6 @@ function conversation($items, $mode, $update, $page_mode = 'traditional', $prepa // logger('nouveau: ' . print_r($threads,true)); - $o .= replace_macros($page_template, array( '$baseurl' => z_root(), '$photo_item' => $content_html, @@ -935,6 +934,7 @@ function conversation($items, $mode, $update, $page_mode = 'traditional', $prepa '$wait' => t('Loading...'), '$conversation_tools' => t('Conversation Tools'), '$dropping' => ($page_dropping?t('Delete Selected Items'):False), + '$preview' => $preview )); return $o; |