1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

Updated Firebird schema ... "compatible" with mysql version ... NOTE the change in ucp schema, module_name becomes module_title to prevent conflict. Various script SQL issues preventing full compatibility with Firebird at present

git-svn-id: file:///svn/phpbb/trunk@4137 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2003-06-15 23:14:04 +00:00
parent b87efc8994
commit 692bce3778
5 changed files with 236 additions and 210 deletions

View File

@@ -135,7 +135,7 @@ obtain_word_list($censors);
// Grab the other enabled UCP modules
$sql = "SELECT module_id, module_name, module_filename
$sql = "SELECT module_id, module_title, module_filename
FROM " . UCP_MODULES_TABLE . "
ORDER BY module_order ASC";
$result = $db->sql_query($sql);
@@ -143,7 +143,7 @@ $result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result))
{
$template->assign_block_vars('ucp_sections', array(
'SECTION' => $user->lang['UCP_' . $row['module_name']],
'SECTION' => $user->lang['UCP_' . $row['module_title']],
'U_SECTION' => "ucp.$phpEx$SID&i=" . $row['module_id'],