1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-13 17:12:07 +02:00

Fix for missing subject on page comments.

This commit is contained in:
Cameron 2017-10-10 15:18:53 -07:00
parent 857c894a62
commit d2444af931

View File

@ -988,7 +988,8 @@ class pageClass
$e107cache->clear("comment.page.".$this->pageID);
$e107cache->clear($this->cacheString);
}
return $cobj->compose_comment("page", "comment", $this->pageID, 0, $this->title, false, true);
return $cobj->compose_comment("page", "comment", $this->pageID, 0, $this->page['page_title'], false, true);
}
}