Changed db_escape function to avoid XSS attacks via js db injection
[fa-stable.git] / manufacturing / includes / db / work_centres_db.inc
index a1cffa01da17fa0f6bbe951c5a1de8507cc85ee8..a2255c3252f9ced4c8d5d84607108ab4d571261a 100644 (file)
@@ -2,41 +2,41 @@
 
 function add_work_centre($name, $description)
 {
-       $sql = "INSERT INTO ".TB_PREF."workcentres (name, description) 
-               VALUES ('$name','$description')";
-               
-       db_query($sql, "could not add work centre");            
+       $sql = "INSERT INTO ".TB_PREF."workcentres (name, description)
+               VALUES (".db_quote($name).",".db_quote($description).")";
+
+       db_query($sql, "could not add work centre");
 }
 
 function update_work_centre($type_id, $name, $description)
 {
-       $sql = "UPDATE ".TB_PREF."workcentres SET name='$name', description='$description'
+       $sql = "UPDATE ".TB_PREF."workcentres SET name=".db_quote($name).", description=".db_quote($description)."
                WHERE id=$type_id";
-       
-       db_query($sql, "could not update work centre");                 
+
+       db_query($sql, "could not update work centre");
 }
 
 function get_all_work_centres()
 {
        $sql = "SELECT * FROM ".TB_PREF."workcentres";
-       
+
        return db_query($sql, "could not get all work centres");
-} 
+}
 
 function get_work_centre($type_id)
 {
        $sql = "SELECT * FROM ".TB_PREF."workcentres WHERE id=$type_id";
-       
+
        $result = db_query($sql, "could not get work centre");
-       
+
        return db_fetch($result);
 }
 
 function delete_work_centre($type_id)
 {
        $sql="DELETE FROM ".TB_PREF."workcentres WHERE id=$type_id";
-               
-       db_query($sql, "could not delete work centre"); 
+
+       db_query($sql, "could not delete work centre");
 }
 
 ?>
\ No newline at end of file