Slashes in URL paths in links on't work for me.

[[about/something|About something]]

turns into

http://my-server-url/about%2Fsomething

in the URL-bar of the browser.

How can I solve this?

Regards
Samuel

Comments

saml’s picture

Well, I solved it for now by replacing the line (line 557 in my case)

$path = pearwiki_filter_wikilink_base($pearwiki_current_format) . urlencode($page);

in the file pearwiki_filter.module with the following:

$path = pearwiki_filter_wikilink_base($pearwiki_current_format) . $page;

But maybe there's a better way to do it?

// Samuel
Drupal theme design

saml’s picture

Status: Active » Needs review