Default pages for tables / databases.

This commit is contained in:
Alexander M. Turek
2002-08-10 19:30:50 +00:00
parent 0b300eb355
commit 8fc9004428
3 changed files with 6 additions and 5 deletions

View File

@@ -6,10 +6,11 @@ $Id$
$Source$
2002-08-10 Marc Delisle <lem9@users.sourceforge.net>
* lang/french update
* lang/french: update.
2002-08-10 Alexander M. Turek <rabus@users.sourceforge.net>
* sql.php3: Default pages for tables / databases.
* sql.php3, db_details_common.php3, tbl_properties_common.php3:
Default pages for tables / databases.
2002-08-10 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* config.inc.php3: coding standards.

View File

@@ -17,7 +17,7 @@ $err_url_0 = 'main.php3'
. '?lang=' . $lang
. '&amp;convcharset=' . $convcharset
. '&amp;server=' . $server;
$err_url = 'db_details.php3'
$err_url = $cfg['DefaultTabDatabase']
. '?lang=' . $lang
. '&amp;convcharset=' . $convcharset
. '&amp;server=' . $server

View File

@@ -13,12 +13,12 @@ require('./libraries/bookmark.lib.php3');
/**
* Defines the urls to return to in case of error in a sql statement
*/
$err_url_0 = 'db_details.php3'
$err_url_0 = $cfg['DefaultTabDatabase']
. '?lang=' . $lang
. '&amp;convcharset=' . $convcharset
. '&amp;server=' . $server
. '&amp;db=' . urlencode($db);
$err_url = 'tbl_properties.php3'
$err_url = $cfg['DefaultTabTable']
. '?lang=' . $lang
. '&amp;convcharset=' . $convcharset
. '&amp;server=' . $server