Skip to content

Commit

Permalink
Correctly store kill query for later use
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Jun 6, 2014
1 parent 11f76e6 commit 900ce06
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libraries/DisplayResults.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -3458,9 +3458,11 @@ private function _getDeleteAndKillLinks(
$_url_params, 'text'
);

$kill = $GLOBALS['dbi']->getKillQuery($row[0]);

$_url_params = array(
'db' => 'mysql',
'sql_query' => $GLOBALS['dbi']->getKillQuery($row[0]),
'sql_query' => $kill,
'goto' => $lnk_goto,
);

Expand Down

0 comments on commit 900ce06

Please sign in to comment.