Added cancel edition hotkey
[fa-stable.git] / admin / db / users_db.inc
index 8580733fcf3fdd84036e6e6cdc6e90f41032bbdc..5200f2c99933bb0d104270218ff587d7bac652b7 100644 (file)
@@ -1,4 +1,14 @@
 <?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_user($user_id, $real_name, $password, $phone, $email, $full_access, 
        $language, $profile, $rep_popup, $pos)
@@ -44,7 +54,8 @@ function update_user($user_id, $real_name, $phone, $email, $full_access,
 
 function update_user_display_prefs($user_id, $price_dec, $qty_dec, $exrate_dec, 
        $percent_dec, $showgl, $showcodes, $date_format, $date_sep, $tho_sep, 
-       $dec_sep, $theme, $pagesize, $show_hints, $profile, $rep_popup)
+       $dec_sep, $theme, $pagesize, $show_hints, $profile, $rep_popup, $query_size, 
+       $graphic_links, $lang)
 {
        $sql = "UPDATE ".TB_PREF."users SET
                prices_dec=".db_escape($price_dec).",
@@ -61,7 +72,10 @@ function update_user_display_prefs($user_id, $price_dec, $qty_dec, $exrate_dec,
                page_size=".db_escape($pagesize).",
                show_hints=$show_hints,
                print_profile=".db_escape($profile).",
-               rep_popup=$rep_popup
+               rep_popup=$rep_popup,
+               query_size=$query_size,
+               graphic_links=$graphic_links,
+               language=".db_escape($lang)."
                WHERE user_id = ".db_escape($user_id);
 
        db_query($sql, "could not update user display prefs for $user_id");