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

pjcard’s picture

Issue summary: View changes

fixed my tags getting stripped out

rewiaca’s picture

same sh9t..

arithmetric’s picture

Status: Active » Fixed

This is fixed in 7.x-1.0-rc1.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

fix my grammar