Great module!

Found a small bug when running 4.7.x-0.30 on Drupal 4.75. When editing subform content, the "Detailed Edit" button link is broken. It's putting an extra / in front of the relative link. I don't know how to write a patch - but the fix in subform.module is:

$operations[] = l( "Detailed Edit", "/node/$related_nid/edit", array( 'class' => 'subform-operation') );

to

$operations[] = l( "Detailed Edit", "node/$related_nid/edit", array( 'class' => 'subform-operation') );

Cheers,

-s

Comments

ericg’s picture

Assigned: Unassigned » ericg

thanks for catching that. We'll add that to the upcoming giant patch of lots of issues the openflows.com crew is about to release for this module.

deekayen’s picture

Status: Needs review » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

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