This commit is contained in:
Alexander M. Turek
2002-12-11 21:12:53 +00:00
parent 2211e21d51
commit 3c48c6baff
2 changed files with 11 additions and 8 deletions

View File

@@ -8,6 +8,9 @@ $Source$
2002-12-11 Alexander M. Turek <rabus@users.sourceforge.net>
* lang/german-*.inc.php3: Updates.
* lang/catalan-*.inc.php3: Updates, thanks again to Xavier Navarro (xavin).
* libraries/build_dump.php3:
- Fixed part 2 of bug #652311 (Undefined variables);
- Coding standards.
2002-12-11 Michal Cihar <nijel@users.sourceforge.net>
* tbl_dump.php3: Fix exporting of structure and data to file, fix and make

View File

@@ -681,7 +681,7 @@ if (!defined('PMA_BUILD_DUMP_LIB_INCLUDED')){
$local_query = 'select * from ' . PMA_backquote($db) . '.' . PMA_backquote($table);
$result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $error_url);
$buffer .= '\begin{table} ' . $crlf
$buffer = '\begin{table} ' . $crlf
. ' \begin{longtable}{|';
for($index=0;$index<$columns_cnt;$index++) {