From 3467896efd32ff560cfd3442c7d6c60a60ce88bf Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 16 May 2012 20:35:27 +0530 Subject: [PATCH 1/2] These have been missed when functions were renamed --- tbl_zoom_select.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tbl_zoom_select.php b/tbl_zoom_select.php index f3b3495310..aa20d599a8 100644 --- a/tbl_zoom_select.php +++ b/tbl_zoom_select.php @@ -65,7 +65,7 @@ if (isset($_REQUEST['get_data_row']) && $_REQUEST['get_data_row'] == true) { $i = 0; foreach ($row as $col => $val) { if ($fields_meta[$i]->type == 'bit') { - $row[$col] = PMA_printable_bit_value($val, $fields_meta[$i]->length); + $row[$col] = PMA_printableBitValue($val, $fields_meta[$i]->length); } $i++; } @@ -175,7 +175,7 @@ if (! isset($zoom_submit) && ! isset($inputs)) { $url_params = array(); $url_params['db'] = $db; $url_params['table'] = $table; -echo PMA_generate_html_tabs(PMA_tbl_getSubTabs(), $url_params, 'topmenu2'); +echo PMA_generateHtmlTabs(PMA_tbl_getSubTabs(), $url_params, 'topmenu2'); /** * Set the field name,type,collation and whether null on select of a coulmn From 0335bbae9d1a63adc42db770743d6f8532011677 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 16 May 2012 20:36:14 +0530 Subject: [PATCH 2/2] Add missing package tag --- tbl_zoom_select.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tbl_zoom_select.php b/tbl_zoom_select.php index aa20d599a8..f3062eedd0 100644 --- a/tbl_zoom_select.php +++ b/tbl_zoom_select.php @@ -5,6 +5,7 @@ * * display table zoom search form, create SQL queries from form data * + * @package PhpMyAdmin */ /**