Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/QA_4_2' into QA_4_2
Browse files Browse the repository at this point in the history
  • Loading branch information
weblate committed Aug 26, 2014
2 parents d34086b + 2e37de5 commit 58e4568
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
16 changes: 8 additions & 8 deletions libraries/tbl_relation.lib.php
Expand Up @@ -159,14 +159,14 @@ function PMA_generateRelationalDropdown(
/**
* Function to get html for the common form
*
* @param string $db current database
* @param string $table current table
* @param array $columns columns
* @param array $cfgRelation configuration relation
* @param string $tbl_storage_engine table storage engine
* @param array $existrel db, table, column
* @param array $existrel_foreign db, table, column
* @param array $options_array options array
* @param string $db current database
* @param string $table current table
* @param array $columns columns
* @param array $cfgRelation configuration relation
* @param string $tbl_storage_engine table storage engine
* @param array|null $existrel db, table, column
* @param array|null $existrel_foreign db, table, column
* @param array $options_array options array
*
* @return string
*/
Expand Down
3 changes: 2 additions & 1 deletion tbl_relation.php
Expand Up @@ -148,7 +148,8 @@

// common form
$html_output .= PMA_getHtmlForCommonForm(
$db, $table, $columns, $cfgRelation, $tbl_storage_engine, $existrel,
$db, $table, $columns, $cfgRelation, $tbl_storage_engine,
isset($existrel) ? $existrel : null,
isset($existrel_foreign) ? $existrel_foreign : null, $options_array
);

Expand Down

0 comments on commit 58e4568

Please sign in to comment.