diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/comanche.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/comanche.php b/include/comanche.php index 42c8e045c..526819572 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -85,9 +85,10 @@ 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", - intval($a->profile['profile_uid']), + intval(get_app()->profile['profile_uid']), dbesc($name) ); if($r) { |