X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=bf0771ba46ba25832d85ee8b4883513b2f09a3ab;hb=c5c02144e4d60928f888af90060318649e03cdec;hp=331a29314d88149be2de0b2b4b1065d95eb409c0;hpb=cf9bdc2716da264ee204e1b5c530f389aadebaba;p=fa-stable.git diff --git a/config.php b/config.php index 331a2931..bf0771ba 100644 --- a/config.php +++ b/config.php @@ -1,15 +1,15 @@ . +***********************************************************************/ + //-------------------------------------------------- // User configurable variables //--------------------------------------------------- @@ -25,6 +25,13 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $show_sql = 0; $go_debug = 1; $pdf_debug = 0; + // set $sql_trail to 1 only if you want to perform bugtracking sql trail + // Warning: this produces huge amount of data in sql_trail table. + // Don't forget switch the option off and flush the table manually after + // trail, or your future backup files are overloaded with unneeded data. + // + $sql_trail = 0; // save all sql queries in sql_trail + $select_trail = 0; // track also SELECT queries if ($go_debug == 1) { error_reporting(E_ALL); @@ -180,4 +187,24 @@ if(isset($_SESSION["wa_current_user"])) { // additional js source included in header $js_lib = $js_userlib = array(); +if (!defined('ICON_EDIT')) +{ + define("ICON_EDIT", "edit.gif"); + define("ICON_DELETE", "delete.gif"); + define("ICON_ADD", "ok.gif"); + define("ICON_UPDATE", "ok.gif"); + define("ICON_OK", "ok.gif"); + define("ICON_CANCEL", "delete.gif"); + define("ICON_GL", "gl.png"); + define("ICON_PRINT", "print.png"); + define("ICON_PDF", "pdf.gif"); + define("ICON_DOC", "invoice.gif"); + define("ICON_CREDIT", "credit.gif"); + define("ICON_RECEIVE", "receive.gif"); + define("ICON_DOWN", "download.gif"); + define("ICON_MONEY", "money.png"); + define("ICON_REMOVE", "remove.png"); + define("ICON_REPORT", "report.png"); + define("ICON_VIEW", "view.gif"); +} ?> \ No newline at end of file