single to double quote to embrace strings
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Sun, 14 Dec 2008 10:48:32 +0000 (10:48 +0000)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Sun, 14 Dec 2008 10:48:32 +0000 (10:48 +0000)
web/Obj/brisk.phh

index 6b30672..622132c 100644 (file)
@@ -2018,7 +2018,7 @@ class Room {
             $flags |= 1;
           }
         
-        $content .= sprintf('%s[ %d, \'%s\' ]',($ct > 0 ? ', ' : ''), $flags, xcape($this->user[$e]->name));
+        $content .= sprintf('%s[ %d, "%s" ]',($ct > 0 ? ', ' : ''), $flags, xcape($this->user[$e]->name));
         $ct++;
       }
     }
@@ -2091,7 +2091,7 @@ class Room {
       
       log_main($user_cur->name. sprintf(" IN TABLE [%d]", $table_idx));
       
-      $content .= sprintf('%s[ %d, \'%s\' ]',($i == 0 ? '' : ', '), $flags, xcape($user_cur->name));
+      $content .= sprintf('%s[ %d, "%s" ]',($i == 0 ? '' : ', '), $flags, xcape($user_cur->name));
     }
 
     $content .= ' ]';