! -> Note
$ -> Affected files
+17-Jan-2011 Joe Hunt
+# [0000494] Cannot set second company pref when setup System and General GL
+$ /admin/db/company_db.inc
12-Jan-2011 Janusz Dobrowolski
+ Added access extensions hook method, cleanup
function set_company_pref($pref, $category, $type, $length, $value)
{
- $sql = "REPLACE `0_sys_prefs` SET `name`=".db_escape($pref).", `category`=".db_escape($category)
- .", `type`=".db_escape($type).", `length`=".db_escape($length).", `value`=".db_escape($value);
+ $sql = "REPLACE ".TB_PREF."sys_prefs SET name=".db_escape($pref).", category=".db_escape($category)
+ .", type=".db_escape($type).", length=".db_escape($length).", value=".db_escape($value);
return db_query($sql, "cannot set company pref");
}