diff options
author | friendica <info@friendica.com> | 2013-02-13 23:54:25 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-13 23:54:25 -0800 |
commit | 4bde38c4294a30af0ad77cc15368e179a3de8a31 (patch) | |
tree | 232e712488e646c76406ea187f4217e4111cfd66 | |
parent | b4057cfeb494dac9ad650e7deadec695c20dc912 (diff) | |
download | volse-hubzilla-4bde38c4294a30af0ad77cc15368e179a3de8a31.tar.gz volse-hubzilla-4bde38c4294a30af0ad77cc15368e179a3de8a31.tar.bz2 volse-hubzilla-4bde38c4294a30af0ad77cc15368e179a3de8a31.zip |
make 'view in context' actually go somewhere useful
-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 c1748dea2..368a0b0df 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -632,7 +632,7 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') { 'like' => '', 'dislike' => '', 'comment' => '', - 'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state) . '/display/' . $nickname . '/' . $item['id'], 'title'=> t('View in context'))), + 'conv' => (($preview) ? '' : array('href'=> z_root() . '/display/' . $item['uri'], 'title'=> t('View in context'))), 'previewing' => $previewing, 'wait' => t('Please wait'), 'thread_level' => 1, |