From be93eb4da0f3248f54afa725ee0c2f24d63ffdce Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 15 Jun 2002 13:57:08 +0000 Subject: [PATCH] default values --- ChangeLog | 3 ++- config.inc.php3 | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index d6a8938f4..2a2216aec 100755 --- a/ChangeLog +++ b/ChangeLog @@ -12,12 +12,13 @@ $Source$ * lang/ukrainian.inc.php3 updates, thanks to Markijan Baran * lang/spanish.inc.php3, catala.inc.php3 updates, thanks to Xavier Navarro * lang/czech* updates, thanks to Michal Cihar - * lang/norwegian.inc.php3 updates, thanks to Sven-Erik Andersen + * lang/norwegian.inc.php3 updates, thanks to Sven-Erik Andersen * lang/swedish.inc.php3 updates, thanks to Björn T. Hallberg 2002-06-15 Alexander M. Turek * lang/thai.inc.php3: Updates, thanks again to Arthit Suriyawongkul. * lang/albanian.inc.php3: Updates, thanks again to Laurent Dhima. + * config.inc.php3: Changed default values of some directives. 2002-06-15 Mike Beck started putting the relationtables in a central db diff --git a/config.inc.php3 b/config.inc.php3 index ccc4d9f09..5f80ab514 100755 --- a/config.inc.php3 +++ b/config.inc.php3 @@ -200,7 +200,7 @@ $cfg['DefaultLang'] = 'en'; */ // Default charset to use for recoding of MySQL queries // (see $cfg['AvailableCharsets'] to possible choices, you can add your own) -$cfg['DefaultCharset'] = 'iso-8859-2'; +$cfg['DefaultCharset'] = 'iso-8859-1'; // Allow charset recoding of MySQL queries, must be also enabled in language // file to make harder using other language files than unicode. $cfg['AllowAnywhereRecoding'] = TRUE; @@ -244,15 +244,15 @@ $cfg['RepeatCells'] = 100; // repeat header names every X cells $cfg['UseSyntaxColoring'] = TRUE; // use syntaxcoloring on output of SQL, might be a little slower $cfg['colorFunctions'] = '#FF0000'; // Colors used for Syntaxcoloring of SQL Statements -$cfg['colorKeywords'] = '#0000FF'; +$cfg['colorKeywords'] = '#990099'; $cfg['colorStrings'] = '#008000'; $cfg['colorColType'] = '#FF9900'; $cfg['colorAdd'] = '#0000FF'; -/** +/** * Available charsets for MySQL conversion. currently contains all which could * be found in lang/* files and few more. - * + * * Charsets will be shown in same order as here listed, so if you frequently * use some of these move them to the top. */