Automatic Foreign/Internal Layout fix

This commit is contained in:
Adnan
2010-08-19 17:31:01 +05:00
parent d579653dc5
commit afcf1e6bbe

View File

@@ -58,8 +58,8 @@ class PMA_User_Schema
break; break;
case 'createpage': case 'createpage':
$this->pageNumber = PMA_REL_create_page($_POST['newpage'], $cfgRelation, $db, $query_default_option); $this->pageNumber = PMA_REL_create_page($_POST['newpage'], $cfgRelation, $db, $query_default_option);
$this->autoLayoutForeign = $_POST['auto_layout_foreign']; $this->autoLayoutForeign = isset($_POST['auto_layout_foreign']) ? "1":NULL;
$this->autoLayoutInternal = $_POST['auto_layout_internal']; $this->autoLayoutInternal = isset($_POST['auto_layout_internal']) ? "1":NULL;
$this->processRelations($db, $this->pageNumber,$cfgRelation,$query_default_option); $this->processRelations($db, $this->pageNumber,$cfgRelation,$query_default_option);
break; break;
case 'edcoord': case 'edcoord':
@@ -702,7 +702,7 @@ class PMA_User_Schema
} }
} }
if (isset($this->autoLayoutInternal) || isset($this->auto_layout_foreign)) { if (isset($this->autoLayoutInternal) || isset($this->autoLayoutForeign)) {
$this->addRelationCoordinates($all_tables,$pageNumber,$db, $cfgRelation,$query_default_option); $this->addRelationCoordinates($all_tables,$pageNumber,$db, $cfgRelation,$query_default_option);
} }