mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
17 lines
275 B
PHP
17 lines
275 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier/AttrDef.php';
|
||
|
|
||
|
class HTMLPurifier_AttrDef_Email extends HTMLPurifier_AttrDef
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Unpacks a mailbox into its display-name and address
|
||
|
*/
|
||
|
function unpack($string) {
|
||
|
// needs to be implemented
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|