constant LINK_ICHARS in Link 5
1 use of LINK_ICHARS
- link_validate_url in ./
link.module - A lenient verification for URLs. Accepts all URLs following RFC 1738 standard for URL formation and all email addresses following the RFC 2368 standard for mailto address formation.
File
- ./
link.module, line 15 - Defines simple link field types.
Code
define('LINK_ICHARS', (string) html_entity_decode(implode("", array(
"æ",
// æ
"Æ",
// Æ
"ø",
// ø
"Ø",
// Ø
"å",
// å
"Å",
// Å
"ä",
// ä
"Ä",
// Ä
"ö",
// ö
"Ö",
// Ö
"ü",
// ü
"Ü",
)), ENT_QUOTES, 'UTF-8'));