corretta gestione stringhe
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Wed, 17 Jan 2007 08:52:14 +0000 (08:52 +0000)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Wed, 17 Jan 2007 08:52:14 +0000 (08:52 +0000)
web/brisk.phh
web/index.php

index 03ec212..df4c3f1 100644 (file)
@@ -36,7 +36,10 @@ define(BRISK_DEBUG, FALSE);
 
 function xcape($s)
 {
-  return (str_replace('\\', '\\\\', str_replace('@', '&#64;', str_replace('|', '&brvbar;', htmlentities($s,ENT_COMPAT,"UTF-8")))));
+  $from = array (   '\\',     '@',        '|' );
+  $to   = array ( '\\\\', '&#64;', '&brvbar;' );
+
+  return (str_replace($from, $to, htmlentities($s,ENT_COMPAT,"UTF-8")));
 }
 
 
index 100547f..b5d96ed 100644 (file)
@@ -58,6 +58,7 @@ function main()
       $bri->garbage_manager(TRUE);
       /* try login */
       $name = substr($name, 0, 12);
+      $name = str_replace(" ", "_", $name);
       if (($user = &$bri->add_user(&$sess, &$idx, $name)) != FALSE) {
        $ACTION = "room";