diff --git a/ChangeLog b/ChangeLog
index 57582aa51..7367fdf6a 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,14 @@ phpMyAdmin - Changelog
$Id$
$Source$
+2001-09-08 Loïc Chapeaux
+ * IMPORTANT UPDATE: "lib.inc.php3" has been splitted into smaller libraries
+ in order to lower the server charge. All the libraries are now stored in
+ a new sub-directory which name is... "libraries".
+ * db_readdump.php3 has been renamed to read_dump.php3.
+ * lang/italian.inc.php3: updated thanks to
+ Pietro Danesi .
+
2001-09-07 Loïc Chapeaux
* main.php3, line 208: fixed an invalid link id.
* db_details.php3:
@@ -22,7 +30,9 @@ $Source$
- line 2337: fixed an illegal index warning with php3;
- line 1762: invalid number of parameters in the function call.
* db_printview.php3; tbl_printview.php3: extended so the generated pages
- contains the same informations that the one in the calling page.
+ contains the same informations that the one in the calling page. Based on
+ patch #444128 (display & dump index length) thanks to
+ Marcus Börger .
* db_details.php3; db_readdump.php3; sql.php3; lib.inc.php3; main.php3;
tbl_copy.php3; tbl_properties.inc.php3; tbl_properties.php3;
tbl_rename.php3; mult_submits.inc.php3: $reload has now true boolean
diff --git a/Documentation.html b/Documentation.html
index 13a0ad060..1ef5bba4c 100755
--- a/Documentation.html
+++ b/Documentation.html
@@ -323,10 +323,10 @@
(see $cfgServers[n]['stduser']).
- Please also note that if you try a phpMyAdmin login with this stduser,
- you could get some errors, depending on the exact privileges you
- gave to this stduser. phpMyAdmin does not support a direct login
- with the stduser.
+ Please also note that if you try a phpMyAdmin login with this stduser,
+ you could get some errors, depending on the exact privileges you gave
+ to this stduser. phpMyAdmin does not support a direct login with the
+ the stduser.
See also the FAQ section for more information about security.
@@ -959,13 +959,16 @@
-
- All files include header.inc.php3 (layout), lib.inc.php3
- (common functions) and config.inc.php3.
+ All files include header.inc.php3 (layout),
+ libraries/common.lib.php3 (common functions) and
+ config.inc.php3.
All configuration data belongs in config.inc.php3. Please keep
it free from other code.
- Commonly used functions should be added to lib.inc.php3.
+ Commonly used functions should be added to
+ libraries/lib.inc.php3 and more specific ones may be added
+ within a library stored into the libraries sub-directory.
-
Obviously, you're free to use whatever coding style you want. But
diff --git a/config.inc.php3 b/config.inc.php3
index eee74e1aa..0f51483de 100755
--- a/config.inc.php3
+++ b/config.inc.php3
@@ -125,10 +125,11 @@ $cfgManualBase = 'http://www.mysql.com/documentation/mysql/bychapter';
*/
// Default language to use, if not browser-defined or user-defined
$cfgDefaultLang = 'en';
-// Force: always use this language - must be defined in select_lang.inc.php3
+// Force: always use this language - must be defined in
+// libraries/select_lang.lib.php3
// $cfgLang = 'en';
// Loads language file
-require('./select_lang.inc.php3');
+require('./libraries/select_lang.lib.php3');
/**
diff --git a/db_create.php3 b/db_create.php3
index a48736a73..663b71f2f 100755
--- a/db_create.php3
+++ b/db_create.php3
@@ -5,7 +5,7 @@
/**
* Gets some core libraries
*/
-require('./grab_globals.inc.php3');
+require('./libraries/grab_globals.lib.php3');
$js_to_run = 'functions.js';
require('./header.inc.php3');
diff --git a/db_details.php3 b/db_details.php3
index 6b6e0e40e..da0f4857d 100755
--- a/db_details.php3
+++ b/db_details.php3
@@ -6,8 +6,9 @@
* Gets some core libraries, ensures the database exists (else move to the
* "parent" script) and diplays headers
*/
-require('./grab_globals.inc.php3');
-require('./lib.inc.php3');
+require('./libraries/grab_globals.lib.php3');
+require('./libraries/common.lib.php3');
+require('./libraries/bookmark.lib.php3');
// Not a valid db name -> back to the welcome page
if (!empty($db)) {
$is_db = @mysql_select_db($db);
@@ -386,7 +387,7 @@ $url_query = 'lang=' . $lang
. '&db=' . urlencode($db)
. '&goto=db_details.php3';
if (isset($show_query) && $show_query == 'y') {
- // This script has been called by db_readdump.php3
+ // This script has been called by read_dump.php3
if (isset($sql_query_cpy)) {
$query_to_display = $sql_query_cpy;
}
@@ -416,7 +417,7 @@ if ($num_tables > 0) {
-
-