Just installed this to my site: http://www.greenhughes.com where I have the blog as my default front page. The SIOC module was generating a link of http://www.greenhughes.com/sioc/forum/1 instead of http://www.greenhughes.com/sioc/blog/1 for this page. Looks like this is due to line 653 in the function sioc_autodiscovery which says:
else if (arg(0)=='blog' && $id=arg(1)) $type = "forum/$id";
changing this to:
else if (arg(0)=='blog' && $id=arg(1)) $type = "blog/$id";
seemed to fix it!
Hope this helps.
Comments
Comment #1
scor commentedthanks liamgh. fixed in 5.x and 6.x branches.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.