Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 28923b4

Browse files
committed
Renamed tbl_common.php to tbl_common.inc.php for better consistency
1 parent 2c805ad commit 28923b4

19 files changed

Lines changed: 18 additions & 18 deletions

libraries/mult_submits.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145

146146
include_once './libraries/header.inc.php';
147147
if (strlen($table)) {
148-
include './libraries/tbl_common.php';
148+
include './libraries/tbl_common.inc.php';
149149
$url_query .= '&goto=tbl_sql.php&back=tbl_sql.php';
150150
include './libraries/tbl_info.inc.php';
151151
} elseif (strlen($db)) {

libraries/rte/rte_main.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Displays the header and tabs
2424
*/
2525
if (! empty($table) && in_array($table, PMA_DBI_get_tables($db))) {
26-
include_once './libraries/tbl_common.php';
26+
include_once './libraries/tbl_common.inc.php';
2727
} else {
2828
$table = '';
2929
include_once './libraries/db_common.inc.php';

sql.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@
920920

921921
if (! $GLOBALS['is_ajax_request'] || ! $GLOBALS['cfg']['AjaxEnable']) {
922922
if (strlen($table)) {
923-
include 'libraries/tbl_common.php';
923+
include 'libraries/tbl_common.inc.php';
924924
$url_query .= '&goto=tbl_sql.php&back=tbl_sql.php';
925925
include 'libraries/tbl_info.inc.php';
926926
} elseif (strlen($db)) {

tbl_addfield.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
/**
221221
* Gets tables informations
222222
*/
223-
include_once 'libraries/tbl_common.php';
223+
include_once 'libraries/tbl_common.inc.php';
224224
include_once 'libraries/tbl_info.inc.php';
225225

226226
$active_page = 'tbl_structure.php';

tbl_alter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* Gets tables informations
2828
*/
29-
require_once 'libraries/tbl_common.php';
29+
require_once 'libraries/tbl_common.inc.php';
3030
require_once 'libraries/tbl_info.inc.php';
3131

3232
$active_page = 'tbl_structure.php';

tbl_chart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
if (strlen($GLOBALS['table'])) {
2828
$url_params['goto'] = $cfg['DefaultTabTable'];
2929
$url_params['back'] = 'tbl_sql.php';
30-
include 'libraries/tbl_common.php';
30+
include 'libraries/tbl_common.inc.php';
3131
include 'libraries/tbl_info.inc.php';
3232
} elseif (strlen($GLOBALS['db'])) {
3333
$url_params['goto'] = $cfg['DefaultTabDatabase'];

tbl_export.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* Gets tables informations and displays top links
1717
*/
18-
require_once 'libraries/tbl_common.php';
18+
require_once 'libraries/tbl_common.inc.php';
1919
$url_query .= '&goto=tbl_export.php&back=tbl_export.php';
2020
require_once 'libraries/tbl_info.inc.php';
2121

tbl_import.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* Gets tables informations and displays top links
1717
*/
18-
require_once 'libraries/tbl_common.php';
18+
require_once 'libraries/tbl_common.inc.php';
1919
$url_query .= '&goto=tbl_import.php&back=tbl_import.php';
2020

2121
require_once 'libraries/tbl_info.inc.php';

tbl_indexes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212
require_once 'libraries/common.inc.php';
1313
require_once 'libraries/Index.class.php';
14-
require_once 'libraries/tbl_common.php';
14+
require_once 'libraries/tbl_common.inc.php';
1515

1616
// Get fields and stores their name/type
1717
$fields = array();

0 commit comments

Comments
 (0)