Skip to content

Commit

Permalink
Update another instance of setProperties
Browse files Browse the repository at this point in the history
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
  • Loading branch information
madhuracj committed Feb 10, 2015
1 parent 73113ba commit 58a7bf4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions libraries/sql.lib.php
Expand Up @@ -1685,6 +1685,7 @@ function PMA_getHtmlForSqlQueryResultsTable($displayResultsObject,
) {
$printview = isset($_REQUEST['printview']) ? $_REQUEST['printview'] : null;
$table_html = '';
$browse_dist = ! empty($_REQUEST['is_browse_distinct']);

if ($analyzed_sql_results['is_procedure']) {

Expand Down Expand Up @@ -1717,7 +1718,8 @@ function PMA_getHtmlForSqlQueryResultsTable($displayResultsObject,
$showtable,
$printview,
$url_query,
$editable
$editable,
$browse_dist
);

$displayParts = array(
Expand Down Expand Up @@ -1756,7 +1758,7 @@ function PMA_getHtmlForSqlQueryResultsTable($displayResultsObject,
$fields_cnt, $GLOBALS['querytime'], $pmaThemeImage, $GLOBALS['text_dir'],
$analyzed_sql_results['is_maint'], $analyzed_sql_results['is_explain'],
$analyzed_sql_results['is_show'], $showtable, $printview, $url_query,
$editable, ! empty($_REQUEST['is_browse_distinct'])
$editable, $browse_dist
);

$table_html .= $displayResultsObject->getTable(
Expand Down

0 comments on commit 58a7bf4

Please sign in to comment.