Attempting to change any options on the "comment options" form (comments per page, etc) attempts to submit the form to /comment, which doesn't exist/work.

function is comment_render(). This bug's been around for months, but I worked around it by disabling the comment options box. (It was useless anyway, because paging was also broken).

Comments

ixis.dylan’s picture

I think it's because the menu item pointing to the required callback has been removed.

    $items[] = array('path' => 'comment', 'title' => t('reply to comment'),
      'callback' => 'comment_save_settings', 'access' => 1, 'type' => MENU_CALLBACK);  

Inserting something like that into the menu hook doesn't work, though. Maybe the parametered required to redirect back to the node page after submitting the form are being lost? I just get a 404.

merlinofchaos’s picture

I cannot duplicate this. It's possible that it's been fixed.

Can you duplicate this in current CVS?

ixis.dylan’s picture

Status: Active » Closed (fixed)

I think it's fixed now, so I'll mark it closed. Thanks for the reminder.