Project:userreview
Version:5.x-1.x-dev
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

Hi there!

Trying to get userreviews to play nice with Organic groups.

When clicking on the "create userreview" link in the OG details block, i get ".../userreviews/howto". i was asking here about that issue but it seems now this is more related to userreviews then og.

Comments

#1

And i guess this is why:

(from userreview.module)

function userreview_form(&$node) {
//if this form is being called without the proper added fields
//(i.e. it is being created de novo from the "create content" page)
//then display a help message instead.
if (!is_numeric($node->content_id) || !$node->vote_tag) {
drupal_goto('userreview/howto');
}

...