Skip to content

Commit

Permalink
Show database name in 'Check referential integrity' operation as it a…
Browse files Browse the repository at this point in the history
…lready supports cross database relations
  • Loading branch information
kasunchathuranga committed Jun 18, 2013
1 parent 7f8c766 commit 06c4939
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/operations.lib.php
Expand Up @@ -1403,8 +1403,8 @@ function PMA_getHtmlForReferentialIntegrityCheck($foreign, $url_params)
. '<a href="sql.php'
. PMA_generate_common_url($this_url_params)
. '">'
. $master . '&nbsp;->&nbsp;' . $arr['foreign_table'] . '.'
. $arr['foreign_field']
. $master . '&nbsp;->&nbsp;' . $arr['foreign_db'] . '.'
. $arr['foreign_table'] . '.' . $arr['foreign_field']
. '</a></li>' . "\n";
} // foreach $foreign
$html_output .= '</ul></fieldset></div>';
Expand Down

0 comments on commit 06c4939

Please sign in to comment.