Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Foellmann <foellmann@foe-services.de>2014-07-28 14:13:10 +0400
committerChristian Foellmann <foellmann@foe-services.de>2014-07-28 14:13:10 +0400
commit276394119dfbe117acd411a3862de597ba35a2ad (patch)
tree3dc394a15f459d6324e3452e15e9446e47fe3bd0 /libraries/DbSearch.class.php
parentc8c2e72886de1b71f5abcaa295075da9666096b5 (diff)
UPDATE phpmyadmin 4.2.6 multilanguage
Diffstat (limited to 'libraries/DbSearch.class.php')
-rw-r--r--libraries/DbSearch.class.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/libraries/DbSearch.class.php b/libraries/DbSearch.class.php
index faf7a42db0..b98586863f 100644
--- a/libraries/DbSearch.class.php
+++ b/libraries/DbSearch.class.php
@@ -175,6 +175,7 @@ class PMA_DbSearch
// Gets where clause for the query
$where_clause = $this->_getWhereClause($table);
// Builds complete queries
+ $sql = array();
$sql['select_columns'] = $sqlstr_select . ' * ' . $sqlstr_from
. $where_clause;
// here, I think we need to still use the COUNT clause, even for
@@ -361,7 +362,7 @@ class PMA_DbSearch
. __('Delete') . '</a></td>';
} else {
$html_output .= '<td>&nbsp;</td>'
- .'<td>&nbsp;</td>';
+ . '<td>&nbsp;</td>';
}// end if else
$html_output .= '</tr>';
return $html_output;
@@ -476,7 +477,7 @@ class PMA_DbSearch
*
* @return string div tags
*/
- public function _getResultDivs()
+ public function getResultDivs()
{
$html_output = '<!-- These two table-image and table-link elements display'
. ' the table name in browse search results -->';