Posted by vwegert on July 20, 2007 at 1:04pm
1 follower
| Project: | interwiki |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
The function interwiki_filter contains some code to handle http, https, mailto and ftp links differently. I had to patch this in order to make file links work. I changedif (preg_match("/^(http|https|mailto|ftp):/i", $url)) {
toif (preg_match("/^(http|https|file|mailto|ftp):/i", $url)) {
It would be great if this could be added to the standard distribution.