aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-02-05 03:15:10 -0800
committerfriendica <info@friendica.com>2014-02-05 03:15:10 -0800
commitf30a39f9df5dc0cc70a9cb9befe87a8723c75721 (patch)
treecec4081abc7a2e4209e4b28af00dd088c61c0447
parent8a11c2941395bdd325ac076bd22ad011fe41f3c7 (diff)
downloadvolse-hubzilla-f30a39f9df5dc0cc70a9cb9befe87a8723c75721.tar.gz
volse-hubzilla-f30a39f9df5dc0cc70a9cb9befe87a8723c75721.tar.bz2
volse-hubzilla-f30a39f9df5dc0cc70a9cb9befe87a8723c75721.zip
bookmark debug logging
-rw-r--r--include/bookmarks.php8
-rw-r--r--mod/bookmarks.php6
-rw-r--r--version.inc2
3 files changed, 9 insertions, 7 deletions
diff --git a/include/bookmarks.php b/include/bookmarks.php
index 3a4c5c5d6..7a9f40697 100644
--- a/include/bookmarks.php
+++ b/include/bookmarks.php
@@ -7,10 +7,6 @@ function bookmark_add($channel,$sender,$taxonomy,$private) {
$iarr = array();
$channel_id = $channel['channel_id'];
-
-
-
-
if($private)
$iarr['contact_allow'] = array($channel['channel_hash']);
$iarr['mitem_link'] = $taxonomy['url'];
@@ -45,12 +41,14 @@ function bookmark_add($channel,$sender,$taxonomy,$private) {
logger('bookmark_add: unable to create menu ' . $arr['menu_name']);
return;
}
-
+ logger('add_bookmark: menu_id ' . $menu_id);
$r = q("select * from menu_item where mitem_link = '%s' and mitem_menu_id = %d and mitem_channel_id = %d limit 1",
dbesc($iarr['mitem_link']),
intval($menu_id),
intval($channel_id)
);
+ if($r)
+ logger('duplicate menu entry');
if(! $r)
$r = menu_add_item($menu_id,$channel_id,$iarr);
return $r;
diff --git a/mod/bookmarks.php b/mod/bookmarks.php
index fe5ec1e19..73958ff2f 100644
--- a/mod/bookmarks.php
+++ b/mod/bookmarks.php
@@ -26,9 +26,13 @@ function bookmarks_init(&$a) {
require_once('include/bookmarks.php');
require_once('include/Contact.php');
$s = channelx_by_hash($i[0]['author_xchan']);
+ if(! $s) {
+ notice( t('Author lookup failed') . EOL);
+ killme();
+ }
foreach($terms as $t) {
bookmark_add($u,$s[0],$t,$i[0]['item_private']);
- notice( t('Bookmark(s) added') . EOL);
+ notice( t('Bookmark added') . EOL);
}
}
killme();
diff --git a/version.inc b/version.inc
index 6140d2174..c26fe7d69 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2014-02-04.578
+2014-02-05.579