use hex codes

This commit is contained in:
Alexander M. Turek
2002-06-12 19:51:46 +00:00
parent 77bdcc16a5
commit 0a5eceab0d
2 changed files with 8 additions and 7 deletions

View File

@@ -10,6 +10,9 @@ $Source$
Bora Alioglu <bora@risc01.ktu.edu.tr>.
* lang/german.inc.php3: Translated $strMissingBracket.
* lang/english.inc.php3: Reordered strings.
* config.inc.php3:
- Use hex codes for colors;
- Removed a dublicate.
2002-06-12 Mike Beck <mikebeck@users.sourceforge.net>
Syntaxcoloring for SQL - Statements

View File

@@ -227,12 +227,11 @@ $cfg['DefaultDisplay'] = 'horizontal'; // default display direction (horizo
$cfg['RepeatCells'] = 100; // repeat header names every X cells? (0 = deactivate)
$cfg['UseSyntaxColoring'] = TRUE; // use syntaxcoloring on output of SQL, might be a little slower
// Colors used for Syntaxcoloring of SQL Statements
$cfg['colorFunctions'] = 'red';
$cfg['colorKeywords'] = 'blue';
$cfg['colorStrings'] = 'green';
$cfg['colorFunctions'] = '#FF0000'; // Colors used for Syntaxcoloring of SQL Statements
$cfg['colorKeywords'] = '#0000FF';
$cfg['colorStrings'] = '#008000';
$cfg['colorColType'] = '#FF9900';
$cfg['colorAdd'] = 'blue';
$cfg['colorAdd'] = '#0000FF';
/**
@@ -353,13 +352,12 @@ if($cfg['UseSyntaxColoring']) {
'ON',
'JOIN',
'BETWEEN',
'BETWEEN',
'IN',
'IF',
'ELSE',
'SET'
);
}
}
/**
* Unset magic_quotes_runtime - do not change!
*/