Needs review
Project:
Secure Site
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Reporter:
Anonymous (not verified)
Created:
11 Apr 2012 at 11:11 UTC
Updated:
23 Apr 2024 at 13:35 UTC
Jump to comment: Most recent
Comments
Comment #1
decipheredIncorporated in big patch at: http://drupal.org/node/1011890#comment-6541822
Comment #2
decipheredCommitted to 7.x-2.x
Comment #5
feroma commentedHi everybody, I've recently have some problem in password recovery flow. I resolved changing this line:
if (module_exists('locale') && $language->enabled && $language->prefix != '' ) {...into this
if (module_exists('locale') && $language->enabled && $language->prefix != '' && $args[0]==$language->prefix) {...'cause, in my case, even if Locale was active the main URL doesn't report the language prefix.
Hope this help!
Comment #6
pieterdt commented#5 is indeed something that fixes my problems as well. Not sure if this is the correct issue to report the patch in...