Remove unused file.
This commit is contained in:
@@ -11,6 +11,7 @@ $Source$
|
||||
* *.php, libraries/*.php: Move scritps that don't need direct access to
|
||||
libraries folder.
|
||||
* Documentation.html: Up to date information about relation stuff.
|
||||
* tbl_query_box.php: Remove unused file.
|
||||
|
||||
2005-11-24 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||
* themes/original/*, css/phpmyadmin.css.php:
|
||||
|
@@ -1,47 +0,0 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
// vim: expandtab sw=4 ts=4 sts=4:
|
||||
/**
|
||||
* provides the sql form
|
||||
*
|
||||
* @usedby server_sql.php server SQL-tab
|
||||
* @usedby db_details.php database SQL-tab
|
||||
* @usedby server_sql.php server SQL-tab
|
||||
*/
|
||||
|
||||
// Check parameters
|
||||
require_once('./libraries/common.lib.php');
|
||||
require_once('./libraries/bookmark.lib.php');
|
||||
require_once './libraries/sql_query_form.lib.php';
|
||||
|
||||
if ( empty( $querydisplay_tab ) ) {
|
||||
$querydisplay_tab = '';
|
||||
}
|
||||
|
||||
if ( $is_inside_querywindow ) {
|
||||
// ... we redirect to appropriate query sql page
|
||||
// works only full if $db and $table is also stored/grabbed from $_COOKIE
|
||||
if ( ! empty( $table ) ) {
|
||||
require './tbl_properties.php';
|
||||
}
|
||||
elseif ( ! empty( $db ) ) {
|
||||
require './db_details.php';
|
||||
}
|
||||
else {
|
||||
require './server_sql.php';
|
||||
}
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines the query to be displayed in the query textarea
|
||||
*/
|
||||
if ( ! empty( $show_query ) ) {
|
||||
$query_to_display = $sql_query;
|
||||
} else {
|
||||
$query_to_display = '';
|
||||
}
|
||||
unset( $sql_query );
|
||||
|
||||
PMA_sqlQueryForm( $query_to_display, $querydisplay_tab );
|
||||
?>
|
Reference in New Issue
Block a user