Skip to content

Commit

Permalink
Renamed the function processParams() in PMA_DisplayResults class, to …
Browse files Browse the repository at this point in the history
…setProperties()
  • Loading branch information
Chanaka committed Jul 11, 2012
1 parent a97b9b9 commit 65f24f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions libraries/DisplayResults.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public function __construct($db, $table, $goto, $sql_query)
*
* @see sql.php
*/
public function processParams(
public function setProperties(
$unlim_num_rows, $fields_meta, $is_count, $is_export, $is_func,
$is_analyse, $num_rows, $fields_cnt, $querytime, $pmaThemeImage, $text_dir,
$is_maint, $is_explain, $is_show, $showtable, $printview, $url_query
Expand All @@ -267,7 +267,7 @@ public function processParams(
$this->__set('_printview', $printview);
$this->__set('_url_query', $url_query);

}
} // end of the 'setProperties()' function


/**
Expand Down
4 changes: 2 additions & 2 deletions sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@
$printview = isset($printview) ? $printview : null;
$url_query = isset($url_query) ? $url_query : null;

$displayResultsObject->processParams(
$displayResultsObject->setProperties(
$unlim_num_rows, $fields_meta, $is_count, $is_export, $is_func,
$is_analyse, $num_rows, $fields_cnt, $querytime, $pmaThemeImage, $text_dir,
$is_maint, $is_explain, $is_show, $showtable, $printview, $url_query
Expand Down Expand Up @@ -1097,7 +1097,7 @@
$printview = isset($printview) ? $printview : null;
$url_query = isset($url_query) ? $url_query : null;

$displayResultsObject->processParams(
$displayResultsObject->setProperties(
$unlim_num_rows, $fields_meta, $is_count, $is_export, $is_func,
$is_analyse, $num_rows, $fields_cnt, $querytime, $pmaThemeImage, $text_dir,
$is_maint, $is_explain, $is_show, $showtable, $printview, $url_query
Expand Down

0 comments on commit 65f24f0

Please sign in to comment.