Hey, don't always forget to update the config revision, guys!

This commit is contained in:
Alexander M. Turek
2003-08-26 18:59:35 +00:00
parent 6834f8f989
commit a469510ae2
2 changed files with 13 additions and 10 deletions

View File

@@ -5,19 +5,22 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-08-25 Michal Cihar <nijel@users.sourceforge.net>
2003-08-26 Alexander M. Turek <rabus@users.sourceforge.net>
* libraries/common.lib.php3: Backwards compatibility.
2003-08-26 Michal Cihar <nijel@users.sourceforge.net>
* config.inc.php3, lang/*, libraries/config_import.lib.php3,
libraries/display_export.lib.php3, libraries/export/latex.php3: Improved
LaTeX export (patch #777451).
2003-08-25 Michal Cihar <nijel@users.sourceforge.net>
* lang/czech: Updated.
2003-08-25 Marc Delisle <lem9@users.sourceforge.net>
* tbl_relations.php3, tbl_properties_table_info.php3, /lang:
InnoDB relations (for now, same db, only one index column, and
no ON DELETE or ON UPDATE clauses)
2003-08-25 Alexander M. Turek <rabus@users.sourceforge.net>
* tbl_rename.php3: After renaming a table, move back to
tbl_properties_operations.php3 instead of tbl_properties.php3.

View File

@@ -135,7 +135,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
* Includes compatibility code for older config.inc.php3 revisions
* if necessary
*/
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 197) {
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 199) {
include('./libraries/config_import.lib.php3');
}
@@ -348,7 +348,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
function PMA_formatSql($parsed_sql, $unparsed_sql = '')
{
global $cfg;
// Check that we actually have a valid set of parsed data
// well, not quite
// first check for the SQL parser having hit an error
@@ -508,7 +508,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
. '</pre>' . "\n";
echo PMA_showMySQLDocu('Error-returns', 'Error-returns');
if (!empty($back_url) && $exit) {
echo '&nbsp;&middot;&nbsp;[<a href="' . $back_url . '">' . $GLOBALS['strBack'] . '</a>]';
}
@@ -1586,8 +1586,8 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
return array($return_value, $unit);
} // end of the 'PMA_formatByteDown' function
/**
* Extracts ENUM / SET options from a type definition string
*
@@ -1779,7 +1779,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
list($eachvar, $eachval) = explode('=', $query_pair);
$link_or_button .= ' <input type="hidden" name="' . str_replace('amp;', '', $eachvar) . '" value="' . htmlspecialchars(urldecode($eachval)) . '" />' . "\n";
} // end while
if (stristr($message, '<img')) {
$link_or_button .= ' <input type="image" src="' . eregi_replace('^.*src="(.*)".*$', '\1', $message) . '" value="'
. htmlspecialchars(eregi_replace('^.*alt="(.*)".*$', '\1', $message)) . '" />' . "\n" . '</form>' . "\n";
@@ -1888,7 +1888,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
/**
* Function added to avoid path disclosures.
* Called by each script that needs parameters, it displays
* an error message and, by defaults, stops the execution.
* an error message and, by defaults, stops the execution.
*
* @param array The names of the parameters needed by the calling
* script.