X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fbrisk.phh;h=02b91d6360f2932c55e194b1926f2bd2f94ce453;hb=30aa38786951145d916b6a4e1db0b01946e02c6b;hp=999a183c57e6ba9d9cc5eb1e738e4cd56ff22d99;hpb=e10af923d86fc6521b0389dd0c1f6f98573cc5fb;p=brisk.git diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index 999a183..02b91d6 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -278,6 +278,22 @@ Copyright 2006-2009 Matteo Nasta Copyright 2006-2009 Matteo Nastasi (aka mop)

'); +$escinp_from = array( "\"" ); +$escinp_to = array( """ ); + +function escinput($s) +{ + GLOBAL $escinp_from, $escinp_to; + + return str_replace($escinp_from, $escinp_to, $s); +} + +function eschtml($s) +{ + return htmlentities($s); +} + + function langtolng($lang) { GLOBAL $G_lang;