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

scor’s picture

Assigned: Unassigned » scor
Status: Active » Fixed

thanks liamgh. fixed in 5.x and 6.x branches.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.