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
Comment #1
ericg commentedthanks 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.
Comment #2
deekayen commentedComment #3
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.