aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/ucp.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-06-15 23:14:04 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-06-15 23:14:04 +0000
commit692bce377829e7911ea33fae08a6cdb18166433e (patch)
tree174c6a436fe767c2c06874d3b1d2725ed89cdcda /phpBB/ucp.php
parentb87efc8994eb83dc8b97c3800143770361fe86b9 (diff)
downloadforums-692bce377829e7911ea33fae08a6cdb18166433e.tar
forums-692bce377829e7911ea33fae08a6cdb18166433e.tar.gz
forums-692bce377829e7911ea33fae08a6cdb18166433e.tar.bz2
forums-692bce377829e7911ea33fae08a6cdb18166433e.tar.xz
forums-692bce377829e7911ea33fae08a6cdb18166433e.zip
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
Diffstat (limited to 'phpBB/ucp.php')
-rwxr-xr-xphpBB/ucp.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/ucp.php b/phpBB/ucp.php
index ce5b34476c..28b1a13287 100755
--- a/phpBB/ucp.php
+++ b/phpBB/ucp.php
@@ -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&amp;i=" . $row['module_id'],