From c79b9a22896785d397decc6c830b788033a3b29a Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Tue, 10 Mar 2015 18:10:27 +0100 Subject: [PATCH] more descriptive setting name --- plugins/DefaultLayout/DefaultLayoutPlugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/DefaultLayout/DefaultLayoutPlugin.php b/plugins/DefaultLayout/DefaultLayoutPlugin.php index 9ff21c6e50..40823ecf9d 100644 --- a/plugins/DefaultLayout/DefaultLayoutPlugin.php +++ b/plugins/DefaultLayout/DefaultLayoutPlugin.php @@ -31,10 +31,10 @@ if (!defined('GNUSOCIAL')) { exit(1); } class DefaultLayoutPlugin extends Plugin { - public $replyforms = false; + public $prerender_replyforms = false; public function onEndShowThreadedNoticeTail(NoticeListItem $nli, Notice $notice, array $notices) { - if ($this->replyforms) { + if ($this->prerender_replyforms) { $nli->out->elementStart('li', array('class'=>'notice-reply', 'style'=>'display: none;')); $replyForm = new NoticeForm($nli->out, array('inreplyto' => $notice->getID())); $replyForm->show(); -- 2.39.5