aboutsummaryrefslogtreecommitdiffstats
path: root/include/comanche.php
diff options
context:
space:
mode:
authorzottel <github@zottel.net>2013-10-01 09:36:28 +0200
committerzottel <github@zottel.net>2013-10-01 09:36:28 +0200
commitd7b81b1afd150ebc0abfcd12f6ab23d65b61a0af (patch)
treeeffbe0a5c2507760ae065d9c786c91e1c070cac0 /include/comanche.php
parenta6c542289acd349baea37dff0fe7f37427964b15 (diff)
downloadvolse-hubzilla-d7b81b1afd150ebc0abfcd12f6ab23d65b61a0af.tar.gz
volse-hubzilla-d7b81b1afd150ebc0abfcd12f6ab23d65b61a0af.tar.bz2
volse-hubzilla-d7b81b1afd150ebc0abfcd12f6ab23d65b61a0af.zip
Add possibility to use a block a channel menu (set channel_menublock to the lowercase title of the block without special chars)
Fix comanche_block() SQL
Diffstat (limited to 'include/comanche.php')
-rw-r--r--include/comanche.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comanche.php b/include/comanche.php
index 526819572..f1dd0e521 100644
--- a/include/comanche.php
+++ b/include/comanche.php
@@ -87,7 +87,7 @@ function comanche_replace_region($match) {
function comanche_block($name) {
$o = '';
- $r = q("select * from item left join item_id on iid = item_id and item_id.uid = item.uid and item.uid = %d and service = 'BUILDBLOCK' and sid = '%s' limit 1",
+ $r = q("select * from item inner join item_id on iid = item.id and item_id.uid = item.uid and item.uid = %d and service = 'BUILDBLOCK' and sid = '%s' limit 1",
intval(get_app()->profile['profile_uid']),
dbesc($name)
);