diff --git a/ChangeLog b/ChangeLog index 843db258b..7a01f3996 100755 --- a/ChangeLog +++ b/ChangeLog @@ -9,8 +9,9 @@ $Source$ 2001-10-25 Loïc Chapeaux * user_details.php3, line 1172: fixed bug #474685 (table not found editing user) thanks to Alister Bulman . - * libraries/display_tbl.lib.php3: merged patch #472575 (indicator in table - rows) thanks to Darklord . + * config.inc.php3, line 159; Documentation.html, lines 646-652; + libraries/display_tbl.lib.php3, line 607: merged patch #472575 (indicator + in table rows) thanks to Darklord . * libraries/defines.inc.php3, line 20: starting 2.2.2-dev. version. 2001-10-24 Robin Johnson diff --git a/Documentation.html b/Documentation.html index 0a6934418..f53a85530 100755 --- a/Documentation.html +++ b/Documentation.html @@ -643,6 +643,13 @@

+
$cfgPointerColor string [HTML color]
+
+ The color (HTML) used for the pointer in browse mode (does not work + with NS4). +

+
+
$cfgTextareaCols integer
$cfgTextareaRows integer diff --git a/config.inc.php3 b/config.inc.php3 index a0d563850..d6d2845ba 100755 --- a/config.inc.php3 +++ b/config.inc.php3 @@ -155,6 +155,7 @@ $cfgBorder = 0; // border width on tables $cfgThBgcolor = '#D3DCE3'; // table header row colour $cfgBgcolorOne = '#CCCCCC'; // table data row colour $cfgBgcolorTwo = '#DDDDDD'; // table data row colour, alternate +$cfgPointerColor = '#CCFFCC'; // color of the pointer in browse mode $cfgTextareaCols = 40; // textarea size (columns) in edit mode $cfgTextareaRows = 7; // textarea size (rows) in edit mode $cfgLimitChars = 50; // max field data length in browse mode diff --git a/libraries/display_tbl.lib.php3 b/libraries/display_tbl.lib.php3 index a58ee22bf..ba005a20a 100644 --- a/libraries/display_tbl.lib.php3 +++ b/libraries/display_tbl.lib.php3 @@ -604,7 +604,7 @@ if (!defined('__LIB_DISPLAY_TBL__')){ $bgcolor = ($foo % 2) ? $GLOBALS['cfgBgcolorOne'] : $GLOBALS['cfgBgcolorTwo']; ?> - +