Skip to content

Commit

Permalink
Fix #14598 - check referencial integrity show table-content
Browse files Browse the repository at this point in the history
Signed-off-by: William Desportes <williamdes@wdes.fr>
  • Loading branch information
williamdes committed Oct 20, 2019
1 parent 2254f66 commit e87c6b8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libraries/classes/Operations.php
Expand Up @@ -1716,7 +1716,10 @@ public function getHtmlForReferentialIntegrityCheck(array $foreign, array $url_p
. ' IS NOT NULL';
$this_url_params = array_merge(
$url_params,
array('sql_query' => $join_query)
[
'sql_query' => $join_query,
'sql_signature' => Core::signSqlQuery($join_query),
]
);

$html_output .= '<li>'
Expand Down

0 comments on commit e87c6b8

Please sign in to comment.