1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

Moved e107_admin/sql/core_sql.php to e107_core/sql/core_sql.php

This commit is contained in:
Cameron
2013-01-23 13:23:10 -08:00
parent 47474aeedf
commit 972dba3037
6 changed files with 6 additions and 6 deletions

View File

@@ -26,12 +26,12 @@ $dbAdm = new db_table_admin();
// Create an array of all tables
$tableStruct = $dbAdm->get_table_def('',e_ADMIN.'sql/core_sql.php');
$tableStruct = $dbAdm->get_table_def('',e_CORE.'sql/core_sql.php');
$tableArray = array();
foreach ($tableStruct as $t)
{
$tableArray[$t[1]] = array('src' => e_ADMIN.'sql/core_sql.php', 'desc' => 'core:'.$t[1]);
$tableArray[$t[1]] = array('src' => e_CORE.'sql/core_sql.php', 'desc' => 'core:'.$t[1]);
}