After adding to an issue with Update Issue option in CVS version (Feb 27 version), a "Page not found" error comes up with URL as http://site/?q=?q=node/view/53 - ie. the "?q=" part repeats twice.

Comments

Anonymous’s picture

Also occurs after preview of new release, then Submit

blr’s picture

This behavior is still there in CVS. Bumping it up...

Anonymous’s picture

Priority: Normal » Critical

*bump

sulleleven’s picture

*pssst*

sulleleven’s picture

hmm..
line 358 should be:

$breadcrumb[] = array('path' => 'project/'. $term->name), 'title' => $term->name);

let's try that.

sulleleven’s picture

nope....
cant seem to find this bug!

sulleleven’s picture

ok, here is the fix:

comment.inc

line 48
change:
drupal_goto(url("node/$node->nid"));
to:
drupal_goto("node/$node->nid");

Dries’s picture

I just fixed this in HEAD. Marking this 'fixed'.

Anonymous’s picture