1. User haven't comment permission but can see any comments.
2. On full node view drupal show "Create" or "Register" links.
3. But after "Registration" we get "page not found.
Attached patch fix it.
| Comment | File | Size | Author |
|---|---|---|---|
| #10 | comment.module-from_cvs-d6.patch | 2.06 KB | vadym.kononenko |
| #7 | comment.module-from_cvs.patch | 2.06 KB | vadym.kononenko |
| #3 | comment.module-from_root.patch | 1.8 KB | vadym.kononenko |
| comment.module.patch | 1.77 KB | vadym.kononenko |
Comments
Comment #2
Druid commentedI'm seeing a lot of reports of this kind of thing, where evidently a URL string is being fed through cleanup/sanitizer twice. "#" becomes "%23" on the first pass, and on the second, the "%" gets sanitized to %25, leaving you with "%2523" instead of just "%23". Anyway, that might give someone a clue where to look.
Comment #3
vadym.kononenko commentedRecreate patch from drupal root.
Comment #5
vadym.kononenko commentedShould I recreate it again or you apply it as is? I've tested it. All works correct. And patch is applying correctly too.
Comment #6
dddave commentedThe test function for D6 test is broken/not working so this needs to be reviewed the old fashioned way.
Comment #7
vadym.kononenko commentedAttempt number three :)
I've recreated patch from drupal.org CVS as it is described on the page http://drupal.org/node/550576
Comment #9
dddave commentedI guess you assured that this problem still exists in 6.19 and therefore I updated the version. Also upped the priority a notch.
Please take note that the testing fails because this is a patch for D6. Simply put a -D6 before .patch to prevent the testbot choking on your patch. See: http://drupal.org/node/332678
Comment #10
vadym.kononenko commentedIt is just a game... :)
Attempt number four.
Comment #11
podaroklooks like this patch is very simple and clear for me
Not see any ugly code here
But we need to fix it in Drupal 7 before aplying at Drupal 6 (If bug present there)
Powered by Dreditor.
Comment #12
andypostPlease reroll this patch for D7 first also needs a test coverage
Comment #13
naxoc commentedI cannot recreate this in D7. Anyone who can?
Comment #14
catchLooks like this code changed a fair bit in D7, I'm moving back to D6 since no-one can reproduce it there, I didn't try myself.