bug 1245891, too large scaling in PDF schema

This commit is contained in:
Marc Delisle
2005-11-09 12:58:28 +00:00
parent 2da8671831
commit 1c6290db06
2 changed files with 5 additions and 3 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2005-11-09 Marc Delisle <lem9@users.sourceforge.net>
* pdf_pages.php: bug #1245891, too large scaling in PDF schema
2005-11-09 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* server_databases.php, mysql_charsets-lib.php:
bug #1351743 undefined function: pma_getservercollation()

View File

@@ -124,15 +124,14 @@ if ($cfgRelation['pdfwork']) {
if (!in_array($foreign_table, $all_tables)) {
$all_tables[] = $foreign_table;
}
}
// now generate the coordinates for the schema,
// in a clockwise spiral
$pos_x = 300;
$pos_y = 300;
$delta = 50;
$delta_mult = 1.34;
$delta = 110;
$delta_mult = 1.10;
$direction = "right";
foreach ($all_tables AS $current_table) {