Files
phpmyadmin/server_sql.php
Michal Čihař d17fba309c Fix permissions.
Most files were made executable somewhere in ninadsp tree, reverting
this.
2010-08-30 09:53:37 +02:00

39 lines
581 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
*
* @package phpMyAdmin
*/
/**
*
*/
require_once './libraries/common.inc.php';
/**
* Does the common work
*/
$GLOBALS['js_include'][] = 'functions.js';
$GLOBALS['js_include'][] = 'sql.js';
require_once './libraries/server_common.inc.php';
require_once './libraries/sql_query_form.lib.php';
/**
* Displays the links
*/
require './libraries/server_links.inc.php';
/**
* Query box, bookmark, insert data from textfile
*/
PMA_sqlQueryForm();
/**
* Displays the footer
*/
require './libraries/footer.inc.php';
?>