diff --git a/ChangeLog b/ChangeLog index 7ca18d9bf..f14d278ea 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2001-08-30 Loïc Chapeaux + * lib.inc.php3: fits to coding standards. + 2001-08-29 Olivier Müller * left.php3: on login with std_auth, only the databases on which the user has rights will be shown (tested with @mysql_select_db($dbname)). diff --git a/lib.inc.php3 b/lib.inc.php3 index b25bd5942..54d1b514f 100755 --- a/lib.inc.php3 +++ b/lib.inc.php3 @@ -722,6 +722,8 @@ window.parent.frames['nav'].location.replace(''); * @global string the current sql query * @global integer the current position in results * @global string the url to go back in case of errors + * @global boolean whether to limit the number of displayed charcaters of + * text type fields or not * @global integer the maximum number of rows per page * @global integer the total number of rows returned by the sql query */ @@ -729,7 +731,7 @@ window.parent.frames['nav'].location.replace(''); { global $lang, $server, $db, $table; global $sql_query, $pos, $goto, $dontlimitchars; - global $sessionMaxRows, $SelectNumRows, $cfgLimitChars; + global $sessionMaxRows, $SelectNumRows; // $sql_query will be stripslashed in 'sql.php3' if the // 'magic_quotes_gpc' directive is set to 'on' @@ -836,13 +838,10 @@ window.parent.frames['nav'].location.replace('');     @@ -863,6 +862,7 @@ window.parent.frames['nav'].location.replace('');     @@ -878,12 +878,12 @@ window.parent.frames['nav'].location.replace(''); - chars" /> + @@ -908,6 +908,8 @@ window.parent.frames['nav'].location.replace(''); * @global string the current sql query * @global string the url to go back in case of errors * @global integer the total number of rows returned by the sql query + * @global boolean whether to limit the number of displayed charcaters of + * text type fields or not */ function display_table($dt_result, $is_simple = FALSE) {