Skip to content

Commit

Permalink
Move DbMultiTableQuery to Database/MultiTableQuery
Browse files Browse the repository at this point in the history
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
  • Loading branch information
MauricioFauth committed Sep 27, 2017
1 parent 8e5885b commit 0126e10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions db_multi_table_query.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* @package PhpMyAdmin
*/
use PhpMyAdmin\DbMultiTableQuery;
use PhpMyAdmin\Database\MultiTableQuery;
use PhpMyAdmin\ParseAnalyze;
use PhpMyAdmin\Response;
use PhpMyAdmin\Sql;
Expand Down Expand Up @@ -53,6 +53,6 @@
$scripts->addFile('vendor/jquery.md5.js');
$scripts->addFile('db_multi_table_query.js');

$QueryInstance = new DbMultiTableQuery($db);
$QueryInstance = new MultiTableQuery($db);

$response->addHTML($QueryInstance->getFormHTML());
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
*
* @package PhpMyAdmin
*/
namespace PhpMyAdmin;
namespace PhpMyAdmin\Database;

use PhpMyAdmin\Template;
/**
* Class to handle database Multi-table querying
*
* @package PhpMyAdmin
*/
class DbMultiTableQuery
class MultiTableQuery
{
/**
* Database name
Expand Down

0 comments on commit 0126e10

Please sign in to comment.