diff --git a/libraries/DBQbe.class.php b/libraries/DBQbe.class.php index 0832579e6a..b2bbde0554 100644 --- a/libraries/DBQbe.class.php +++ b/libraries/DBQbe.class.php @@ -1399,11 +1399,9 @@ class PMA_DbQbe /** * Provides the generated SQL query * - * @param array $cfgRelation Relation Settings - * * @return string SQL query */ - private function _getSQLQuery($cfgRelation) + private function _getSQLQuery() { $sql_query = ''; // get SELECT clause @@ -1472,7 +1470,7 @@ class PMA_DbQbe $html_output .= ''; $html_output .= ''; // displays form's footers diff --git a/test/classes/PMA_DBQbe_test.php b/test/classes/PMA_DBQbe_test.php index 1290ec7429..0e6b422058 100644 --- a/test/classes/PMA_DBQbe_test.php +++ b/test/classes/PMA_DBQbe_test.php @@ -540,7 +540,7 @@ class PMA_DBQbe_Test extends PHPUnit_Framework_TestCase ', $this->_callProtectedFunction( '_getSQLQuery', - array(array('relwork' => false)) + array() ) ); }