aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Page.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-10-25 22:33:03 -0700
committerzotlabs <mike@macgirvin.com>2017-10-25 22:33:03 -0700
commit4a3149d1ba9ad08c4603b727c1e9411eaa1bbde0 (patch)
tree9a09dfd86e940d2de885c74934c69b145739edf3 /Zotlabs/Module/Page.php
parentdafe0a55471c08120c5d34f263aa0d5e53cc10b7 (diff)
downloadvolse-hubzilla-4a3149d1ba9ad08c4603b727c1e9411eaa1bbde0.tar.gz
volse-hubzilla-4a3149d1ba9ad08c4603b727c1e9411eaa1bbde0.tar.bz2
volse-hubzilla-4a3149d1ba9ad08c4603b727c1e9411eaa1bbde0.zip
hubzilla issue #890, separate the pdl preview feature from the mod_page webpage query so that the webpage will always win if a webpage and pdl have the same name.
Diffstat (limited to 'Zotlabs/Module/Page.php')
-rw-r--r--Zotlabs/Module/Page.php22
1 files changed, 15 insertions, 7 deletions
diff --git a/Zotlabs/Module/Page.php b/Zotlabs/Module/Page.php
index c142afe77..d794a43a1 100644
--- a/Zotlabs/Module/Page.php
+++ b/Zotlabs/Module/Page.php
@@ -89,22 +89,30 @@ class Page extends \Zotlabs\Web\Controller {
if(! $ignore_language) {
$r = q("select item.* from item left join iconfig on item.id = iconfig.iid
where item.uid = %d and iconfig.cat = 'system' and iconfig.v = '%s' and item.item_delayed = 0
- and (( iconfig.k = 'WEBPAGE' and item_type = %d )
- OR ( iconfig.k = 'PDL' AND item_type = %d )) $sql_options $revision limit 1",
+ and iconfig.k = 'WEBPAGE' and item_type = %d
+ $sql_options $revision limit 1",
intval($u[0]['channel_id']),
dbesc($lang_page_id),
- intval(ITEM_TYPE_WEBPAGE),
- intval(ITEM_TYPE_PDL)
+ intval(ITEM_TYPE_WEBPAGE)
);
}
if(! $r) {
$r = q("select item.* from item left join iconfig on item.id = iconfig.iid
where item.uid = %d and iconfig.cat = 'system' and iconfig.v = '%s' and item.item_delayed = 0
- and (( iconfig.k = 'WEBPAGE' and item_type = %d )
+ and iconfig.k = 'WEBPAGE' and item_type = %d
OR ( iconfig.k = 'PDL' AND item_type = %d )) $sql_options $revision limit 1",
intval($u[0]['channel_id']),
dbesc($page_id),
- intval(ITEM_TYPE_WEBPAGE),
+ intval(ITEM_TYPE_WEBPAGE)
+ );
+ }
+ if(! $r) {
+ // no webpage by that name, but we do allow you to load/preview a layout using this module. Try that.
+ $r = q("select item.* from item left join iconfig on item.id = iconfig.iid
+ where item.uid = %d and iconfig.cat = 'system' and iconfig.v = '%s' and item.item_delayed = 0
+ and iconfig.k = 'PDL' AND item_type = %d $sql_options $revision limit 1",
+ intval($u[0]['channel_id']),
+ dbesc($page_id),
intval(ITEM_TYPE_PDL)
);
}
@@ -129,7 +137,7 @@ class Page extends \Zotlabs\Web\Controller {
}
return;
}
-
+
if($r[0]['title'])
\App::$page['title'] = escape_tags($r[0]['title']);