Closed (fixed)
Project:
External Link Page
Version:
7.x-1.0-beta1
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 Sep 2011 at 16:40 UTC
Updated:
21 Apr 2012 at 15:01 UTC
Not sure how this could have missed, but the beta1 branch is breaking internal links, i.e.
a href="/node/123"
becomes
a href=""
After seeing the bug report for an identical issue on the dev branch, a working fix is to change the last return in _ext_link_page_replace (in ext_link_page.module)
from: return 'href="' . $filtered. '"';;
to: return 'href="' . $url . '"';
Really, that function doesn't make a huge amount of sense as it is, $filtered will always be blank at that point. Perhaps it was a bad merge? Particually given the double semicolon.
Comments
Comment #0.0
pjcard commentedfixed my tags getting stripped out
Comment #1
rewiaca commentedsame sh9t..
Comment #2
arithmetric commentedThis is fixed in 7.x-1.0-rc1.
Comment #3.0
(not verified) commentedfix my grammar