1. PHP / Говнокод #437

    +18.4

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    function convert_code_tag_for_email($text = "", $lang=false)
    {
    	global $MESS;
    	if (strlen($text)<=0) return;
    	if($lang===false) $lang = LANGUAGE_ID;
    	$text = stripslashes($text);
    	$text = preg_replace("#<#", "&lt;", $text);
    	$text = preg_replace("#>#", "&gt;", $text);
    	$text = preg_replace("#^(.*?)$#", "   \\1", $text);
    	$OLD_MESS = $MESS;
    	$MESS = array();
    	include($_SERVER["DOCUMENT_ROOT"].BX_ROOT."/modules/main/lang/".$lang."/tools.php");
    	$s1 = "--------------- ".$MESS["MAIN_CODE_S"]." -------------------";
    	$MESS = $OLD_MESS;
    	$s2 = str_repeat("-",strlen($s1));
    	$text = "\n\n>".$s1."\n".$text."\n>".$s2."\n\n";
    	return $text;
    }

    говнобитрикс

    Запостил: guest, 22 Января 2009

    Комментарии (3) RSS

    Добавить комментарий