aboutsummaryrefslogtreecommitdiffstats
path: root/mod/page.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-01 18:36:14 -0700
committerfriendica <info@friendica.com>2013-09-01 18:36:14 -0700
commita1906482dc3323f747744a1447aace78b494ddbd (patch)
tree4107ae9d3ef0f99ea2a0b3dc3a54e3c9ae2d672a /mod/page.php
parentcbab62c95efdd3ab306736a430698313b6b2a320 (diff)
downloadvolse-hubzilla-a1906482dc3323f747744a1447aace78b494ddbd.tar.gz
volse-hubzilla-a1906482dc3323f747744a1447aace78b494ddbd.tar.bz2
volse-hubzilla-a1906482dc3323f747744a1447aace78b494ddbd.zip
rework the pdl_selector a bit since we've slightly changed the way layouts are stored.
Diffstat (limited to 'mod/page.php')
-rw-r--r--mod/page.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/mod/page.php b/mod/page.php
index c63932b5e..b227227bb 100644
--- a/mod/page.php
+++ b/mod/page.php
@@ -61,6 +61,19 @@ function page_content(&$a) {
return;
}
+ if($r[0]['layout_mid']) {
+ $l = q("select body from item where mid = '%s' and uid = %d limit 1",
+ dbesc($r[0]['layout_mid']),
+ intval($u[0]['channel_id'])
+ );
+
+ if($l) {
+ require_once('include/comanche.php');
+ comanche_parser(get_app(),$l[0]['body']);
+ }
+ }
+
+
// Use of widgets should be determined by Comanche, but we don't have it yet, so...
if ($perms['write_pages']) {