Skip to content

Instantly share code, notes, and snippets.

@nao-pon
Created July 3, 2012 05:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nao-pon/3037929 to your computer and use it in GitHub Desktop.
Save nao-pon/3037929 to your computer and use it in GitHub Desktop.
d3download でオリジナルのテキストフィルターを使用可能にするテキストフィルター
<?php
define( '_MD_D3DOWNLOADS_FILTERS_ORIGIN_TITLE','Orignal filter' );
if ( ! function_exists('d3downloads_origin') ) {
function d3downloads_origin( $text, $html, $smiley, $xcode, $image, $br )
{
$myts =& MyTextSanitizer::getInstance();
return $myts->displayTarea( $text, $html, $smiley, $xcode, $image, $br );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment