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:
authorMichal Čihař <michal@cihar.com>2006-10-25 14:55:20 +0400
committerMichal Čihař <michal@cihar.com>2006-10-25 14:55:20 +0400
commitad06b4a9914572939006e2c6ab5e2c4f08f0c0cc (patch)
tree5e9027c8473e1d5a2c10bba18e71c18b385c767c /tbl_addfield.php
parent5760b4137893c2d1d996f0cf46523042f5f98d41 (diff)
Rename tbl_* files to drop useless _properties part.
Diffstat (limited to 'tbl_addfield.php')
-rw-r--r--tbl_addfield.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/tbl_addfield.php b/tbl_addfield.php
index 82d79358e1..c342a469cb 100644
--- a/tbl_addfield.php
+++ b/tbl_addfield.php
@@ -18,7 +18,7 @@ PMA_checkParameters(array('db', 'table'));
/**
* Defines the url to return to in case of error in a sql statement
*/
-$err_url = 'tbl_properties.php?' . PMA_generate_common_url($db, $table);
+$err_url = 'tbl_sql.php?' . PMA_generate_common_url($db, $table);
/**
* The form used to define the field to add has been submitted
@@ -187,8 +187,8 @@ if (isset($submit_num_fields)) {
$sql_query = $sql_query_cpy;
unset($sql_query_cpy);
$message = $strTable . ' ' . htmlspecialchars($table) . ' ' . $strHasBeenAltered;
- $active_page = 'tbl_properties_structure.php';
- require('./tbl_properties_structure.php');
+ $active_page = 'tbl_structure.php';
+ require('./tbl_structure.php');
} else {
PMA_mysqlDie('', '', '', $err_url, FALSE);
// garvin: An error happened while inserting/updating a table definition.
@@ -212,13 +212,13 @@ if ($abort == FALSE) {
/**
* Gets tables informations
*/
- require_once('./libraries/tbl_properties_common.php');
- require_once('./libraries/tbl_properties_table_info.inc.php');
+ require_once('./libraries/tbl_common.php');
+ require_once('./libraries/tbl_info.inc.php');
/**
* Displays top menu links
*/
- $active_page = 'tbl_properties_structure.php';
- require_once('./libraries/tbl_properties_links.inc.php');
+ $active_page = 'tbl_structure.php';
+ require_once('./libraries/tbl_links.inc.php');
/**
* Display the form
*/