aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
Diffstat (limited to 'mod')
-rw-r--r--mod/impel.php1
-rw-r--r--mod/menu.php3
2 files changed, 4 insertions, 0 deletions
diff --git a/mod/impel.php b/mod/impel.php
index 636ef8554..711547624 100644
--- a/mod/impel.php
+++ b/mod/impel.php
@@ -113,6 +113,7 @@ function impel_init(&$a) {
dbesc($namespace),
intval(local_channel())
);
+
$i = q("select id, edited, item_deleted from item where mid = '%s' and uid = %d limit 1",
dbesc($arr['mid']),
intval(local_channel())
diff --git a/mod/menu.php b/mod/menu.php
index 0dbbfde9c..63aeaa5e3 100644
--- a/mod/menu.php
+++ b/mod/menu.php
@@ -78,6 +78,9 @@ function menu_content(&$a) {
$x = menu_list($uid);
if($x) {
for($y = 0; $y < count($x); $y ++) {
+ $m = menu_fetch($x[$y]['menu_name'],$uid,get_observer_hash());
+ if($m)
+ $x[$y]['element'] = '[element]' . base64url_encode(json_encode(menu_element($m))) . '[/element]';
$x[$y]['bookmark'] = (($x[$y]['menu_flags'] & MENU_BOOKMARK) ? true : false);
}
}