Better color in data picker
[fa-stable.git] / inventory / includes / db / movement_types_db.inc
index 280217199d407bddabf63217511f98ba65ee735d..78e55a9705b0e5054f31fe10104392a0e5e1e073 100644 (file)
@@ -1,16 +1,25 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 function add_movement_type($name)
 {
        $sql = "INSERT INTO ".TB_PREF."movement_types (name)
-               VALUES (".db_quote($name).")";
+               VALUES (".db_escape($name).")";
 
        db_query($sql, "could not add item movement type");
 }
 
 function update_movement_type($type_id, $name)
 {
-       $sql = "UPDATE ".TB_PREF."movement_types SET name=".db_quote($name)."
+       $sql = "UPDATE ".TB_PREF."movement_types SET name=".db_escape($name)."
                        WHERE id=$type_id";
 
        db_query($sql, "could not update item movement type");