forked from GNUsocial/gnu-social
		
	tweak for strings
This commit is contained in:
		@@ -600,7 +600,11 @@ class Schema
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    function quoteValue($val)
 | 
					    function quoteValue($val)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        return $this->conn->escapeSimple($val); // ??
 | 
					        if (is_int($val) || is_float($val) || is_double($val)) {
 | 
				
			||||||
 | 
					            return strval($val);
 | 
				
			||||||
 | 
					        } else {
 | 
				
			||||||
 | 
					            return '"' . $this->conn->escapeSimple($val) . '"';
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user