X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fbrisk.phh;h=4444722c16f89c1e6fbceb95a6240018d3c99f52;hb=c96ea8bcfeea99ab6c21cc4773ed2e550b3155d9;hp=6cb7f29bdf589c67949b936b284974522a154f33;hpb=d3d308459ec71347d7a8dbbd8aa0d3800ced76ad;p=brisk.git diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index 6cb7f29..4444722 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -208,6 +208,7 @@ Attualmente ci sono due metodi per ottenere una password sul sito:

  • Carta Regionale dei Servizi della Lombardia (la tessera sanitaria)
  • Carta Regionale dei Servizi del Friuli Venezia Giulia (la tessera sanitaria) +
  • Smart card di InfoCamere

  • Per auto-garantisi occorre possedere:

    @@ -290,19 +291,20 @@ function csplitter($in, $sep) $out = array(); $out[$id] = ""; for ($i = 0 ; $i < strlen($in) ; $i++) { + $ini = substr($in, $i, 1); if ($st == 0) { - if ($in{$i} == '\\') + if ($ini == '\\') $st = 1; - else if ($in{$i} == $sep) { + else if ($ini == $sep) { $id++; $out[$id] = ""; } else { - $out[$id] .= $in{$i}; + $out[$id] .= $ini; } } else if ($st == 1) { - $out[$id] .= $in{$i}; + $out[$id] .= $ini; $st = 0; } } @@ -310,7 +312,6 @@ function csplitter($in, $sep) return ($out); } - function xcape($s) { $from = array ( '\\', '@', '|' );