From f2e3021b59f3661b3c900b06600a580b8970df2f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Oct 2008 13:02:45 -0400 Subject: try to make replies point to the clicked-on notice darcs-hash:20081020170245-5ed1f-b84f63d9d9b589bd18f97924db547e348beb6647.gz --- lib/stream.php | 2 +- lib/util.php | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/stream.php b/lib/stream.php index 8a2c1e9b0..ea452096c 100644 --- a/lib/stream.php +++ b/lib/stream.php @@ -87,7 +87,7 @@ class StreamAction extends PersonalAction { common_element_start('a', array('href' => common_local_url('newnotice', array('replyto' => $profile->nickname)), - 'onclick' => 'return doreply("'.$profile->nickname.'");', + 'onclick' => 'return doreply("'.$profile->nickname.'", '.$notice->id.');', 'title' => _('reply'), 'class' => 'replybutton')); common_raw('→'); diff --git a/lib/util.php b/lib/util.php index bb5da1396..6e9e4533c 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1298,6 +1298,8 @@ function common_notice_form($action=NULL, $content=NULL) { if ($action) { common_hidden('returnto', $action); } + # set by JavaScript + common_hidden('inreplyto', 'false'); common_element('input', array('id' => 'status_submit', 'name' => 'status_submit', 'type' => 'submit', -- cgit v1.2.3-54-g00ecf