|
From: <dac...@us...> - 2007-09-19 06:04:42
|
Revision: 65
http://thevr.svn.sourceforge.net/thevr/?rev=65&view=rev
Author: dachebodt
Date: 2007-09-18 23:04:46 -0700 (Tue, 18 Sep 2007)
Log Message:
-----------
A few minor fixes on forum mod
Modified Paths:
--------------
mods/cms/trunk/modules/core/template/acp_core.html
mods/cms/trunk/posting.php
mods/cms/trunk/viewforum.php
mods/cms/trunk/viewtopic.php
Modified: mods/cms/trunk/modules/core/template/acp_core.html
===================================================================
--- mods/cms/trunk/modules/core/template/acp_core.html 2007-09-18 07:14:25 UTC (rev 64)
+++ mods/cms/trunk/modules/core/template/acp_core.html 2007-09-19 06:04:46 UTC (rev 65)
@@ -50,7 +50,7 @@
<table cellspacing="1">
<thead>
<tr>
- <th>{L_ACP_CORE}</th>
+ <th>{L_MODULE}</th>
<th>{L_MOD_VERS}</th>
<th>{L_MOD_DESC}</th>
<th>{L_MOD_CONTACT}</th>
Modified: mods/cms/trunk/posting.php
===================================================================
--- mods/cms/trunk/posting.php 2007-09-18 07:14:25 UTC (rev 64)
+++ mods/cms/trunk/posting.php 2007-09-19 06:04:46 UTC (rev 65)
@@ -1232,7 +1232,7 @@
$template->alter_block_array('navlinks', array('FORUM_NAME' => $user->lang['FORUMS']), array('FORUM_NAME' => strtoupper($cms_mode)), 'change');
$template->alter_block_array('navlinks', array('U_VIEW_FORUM' => $u_forum), array('U_VIEW_FORUM' => $u_other), 'change');
- $blocks->display($id, $cms_mode);
+ $blocks->display($module->p_id, $module->p_mode);
}
// END CMS mod
Modified: mods/cms/trunk/viewforum.php
===================================================================
--- mods/cms/trunk/viewforum.php 2007-09-18 07:14:25 UTC (rev 64)
+++ mods/cms/trunk/viewforum.php 2007-09-19 06:04:46 UTC (rev 65)
@@ -133,7 +133,8 @@
$template->alter_block_array('navlinks', array('FORUM_NAME' => $user->lang['FORUMS']), array('FORUM_NAME' => strtoupper($cms_mode)), 'change');
$template->alter_block_array('navlinks', array('U_VIEW_FORUM' => $u_forum), array('U_VIEW_FORUM' => $u_other), 'change');
- $blocks->display($id, $cms_mode);
+ // get active blocks
+ $blocks->display($module->p_id, $module->p_mode);
}
// END CMS mod
Modified: mods/cms/trunk/viewtopic.php
===================================================================
--- mods/cms/trunk/viewtopic.php 2007-09-18 07:14:25 UTC (rev 64)
+++ mods/cms/trunk/viewtopic.php 2007-09-19 06:04:46 UTC (rev 65)
@@ -530,7 +530,7 @@
$template->alter_block_array('navlinks', array('FORUM_NAME' => $user->lang['FORUMS']), array('FORUM_NAME' => strtoupper($cms_mode)), 'change');
$template->alter_block_array('navlinks', array('U_VIEW_FORUM' => $u_forum), array('U_VIEW_FORUM' => $u_other), 'change');
- $blocks->display($id, $cms_mode);
+ $blocks->display($module->p_id, $module->p_mode);
}
// END CMS mod
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|