aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Page.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-05 23:07:35 -0700
committerredmatrix <git@macgirvin.com>2016-05-05 23:07:35 -0700
commit7101bbedcb7ca7a04a11ddb4f42be037bd8e54a8 (patch)
treecb021e5a77e53e8815a95485f9d29331f030e2a6 /Zotlabs/Module/Page.php
parent712b2b1bb27d8466e484957cdb3de91e4b71a705 (diff)
downloadvolse-hubzilla-7101bbedcb7ca7a04a11ddb4f42be037bd8e54a8.tar.gz
volse-hubzilla-7101bbedcb7ca7a04a11ddb4f42be037bd8e54a8.tar.bz2
volse-hubzilla-7101bbedcb7ca7a04a11ddb4f42be037bd8e54a8.zip
objectify comanche
Diffstat (limited to 'Zotlabs/Module/Page.php')
-rw-r--r--Zotlabs/Module/Page.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/Zotlabs/Module/Page.php b/Zotlabs/Module/Page.php
index 64b940b0f..8a8bc7a49 100644
--- a/Zotlabs/Module/Page.php
+++ b/Zotlabs/Module/Page.php
@@ -99,9 +99,9 @@ class Page extends \Zotlabs\Web\Controller {
\App::$page['title'] = escape_tags($r[0]['title']);
if($r[0]['item_type'] == ITEM_TYPE_PDL) {
- require_once('include/comanche.php');
- comanche_parser(get_app(),$r[0]['body']);
- \App::$pdl = $r[0]['body'];
+ \App::$comanche = new \Zotlabs\Render\Comanche();
+ \App::$comanche->parse($r[0]['body']);
+ \App::$pdl = $r[0]['body'];
}
elseif($r[0]['layout_mid']) {
$l = q("select body from item where mid = '%s' and uid = %d limit 1",
@@ -110,8 +110,8 @@ class Page extends \Zotlabs\Web\Controller {
);
if($l) {
- require_once('include/comanche.php');
- comanche_parser(get_app(),$l[0]['body']);
+ \App::$comanche = new \Zotlabs\Render\Comanche();
+ \App::$comanche->parse($l[0]['body']);
\App::$pdl = $l[0]['body'];
}
}