mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
- minor fixes
git-svn-id: file:///svn/phpbb/trunk@5024 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
541a049725
commit
cf465cda3f
4 changed files with 45 additions and 44 deletions
|
@ -111,7 +111,7 @@ define('POST_ANNOUNCE', 2);
|
||||||
define('POST_GLOBAL', 3);
|
define('POST_GLOBAL', 3);
|
||||||
|
|
||||||
// Lastread types
|
// Lastread types
|
||||||
define('TRACK_NORMAL', 0); // not used at the moment
|
define('TRACK_NORMAL', 0);
|
||||||
define('TRACK_POSTED', 1);
|
define('TRACK_POSTED', 1);
|
||||||
|
|
||||||
// Notify methods
|
// Notify methods
|
||||||
|
@ -250,7 +250,7 @@ $db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false);
|
||||||
// Grab global variables, re-cache if necessary
|
// Grab global variables, re-cache if necessary
|
||||||
if ($config = $cache->get('config'))
|
if ($config = $cache->get('config'))
|
||||||
{
|
{
|
||||||
$sql = 'SELECT *
|
$sql = 'SELECT config_name, config_value
|
||||||
FROM ' . CONFIG_TABLE . '
|
FROM ' . CONFIG_TABLE . '
|
||||||
WHERE is_dynamic = 1';
|
WHERE is_dynamic = 1';
|
||||||
$result = $db->sql_query($sql);
|
$result = $db->sql_query($sql);
|
||||||
|
@ -264,7 +264,7 @@ else
|
||||||
{
|
{
|
||||||
$config = $cached_config = array();
|
$config = $cached_config = array();
|
||||||
|
|
||||||
$sql = 'SELECT *
|
$sql = 'SELECT config_name, config_value, is_dynamic
|
||||||
FROM ' . CONFIG_TABLE;
|
FROM ' . CONFIG_TABLE;
|
||||||
$result = $db->sql_query($sql);
|
$result = $db->sql_query($sql);
|
||||||
|
|
||||||
|
|
|
@ -34,46 +34,6 @@ class module
|
||||||
global $template, $auth, $db, $user, $config;
|
global $template, $auth, $db, $user, $config;
|
||||||
global $phpbb_root_path, $phpEx;
|
global $phpbb_root_path, $phpEx;
|
||||||
|
|
||||||
if ($post_id)
|
|
||||||
{
|
|
||||||
// We determine the topic and forum id here, to make sure the moderator really has moderative rights on this post
|
|
||||||
$sql = 'SELECT topic_id, forum_id
|
|
||||||
FROM ' . POSTS_TABLE . "
|
|
||||||
WHERE post_id = $post_id";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
$row = $db->sql_fetchrow($result);
|
|
||||||
$db->sql_freeresult($result);
|
|
||||||
|
|
||||||
$topic_id = (int) $row['topic_id'];
|
|
||||||
$forum_id = (int) $row['forum_id'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($topic_id && !$forum_id)
|
|
||||||
{
|
|
||||||
$sql = 'SELECT forum_id
|
|
||||||
FROM ' . TOPICS_TABLE . "
|
|
||||||
WHERE topic_id = $topic_id";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
$row = $db->sql_fetchrow($result);
|
|
||||||
$db->sql_freeresult($result);
|
|
||||||
|
|
||||||
$forum_id = (int) $row['forum_id'];
|
|
||||||
}
|
|
||||||
|
|
||||||
// If we do not have a forum id and the user is not a super moderator (global options are set to false, even if the user is able to moderator at least one forum
|
|
||||||
if (!$forum_id && !$auth->acl_get('m_'))
|
|
||||||
{
|
|
||||||
$forum_list = get_forum_list('m_');
|
|
||||||
|
|
||||||
if (!sizeof($forum_list))
|
|
||||||
{
|
|
||||||
trigger_error('MODULE_NOT_EXIST');
|
|
||||||
}
|
|
||||||
|
|
||||||
// We do not check all forums, only the first one should be sufficiant.
|
|
||||||
$forum_id = $forum_list[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
$sql = 'SELECT module_id, module_title, module_filename, module_subs, module_acl
|
$sql = 'SELECT module_id, module_title, module_filename, module_subs, module_acl
|
||||||
FROM ' . MODULES_TABLE . "
|
FROM ' . MODULES_TABLE . "
|
||||||
WHERE module_type = '{$module_type}'
|
WHERE module_type = '{$module_type}'
|
||||||
|
@ -399,6 +359,46 @@ if (!$quickmod)
|
||||||
$topic_id = request_var('t', 0);
|
$topic_id = request_var('t', 0);
|
||||||
$forum_id = request_var('f', 0);
|
$forum_id = request_var('f', 0);
|
||||||
|
|
||||||
|
if ($post_id)
|
||||||
|
{
|
||||||
|
// We determine the topic and forum id here, to make sure the moderator really has moderative rights on this post
|
||||||
|
$sql = 'SELECT topic_id, forum_id
|
||||||
|
FROM ' . POSTS_TABLE . "
|
||||||
|
WHERE post_id = $post_id";
|
||||||
|
$result = $db->sql_query($sql);
|
||||||
|
$row = $db->sql_fetchrow($result);
|
||||||
|
$db->sql_freeresult($result);
|
||||||
|
|
||||||
|
$topic_id = (int) $row['topic_id'];
|
||||||
|
$forum_id = (int) $row['forum_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($topic_id && !$forum_id)
|
||||||
|
{
|
||||||
|
$sql = 'SELECT forum_id
|
||||||
|
FROM ' . TOPICS_TABLE . "
|
||||||
|
WHERE topic_id = $topic_id";
|
||||||
|
$result = $db->sql_query($sql);
|
||||||
|
$row = $db->sql_fetchrow($result);
|
||||||
|
$db->sql_freeresult($result);
|
||||||
|
|
||||||
|
$forum_id = (int) $row['forum_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we do not have a forum id and the user is not a super moderator (global options are set to false, even if the user is able to moderator at least one forum
|
||||||
|
if (!$forum_id && !$auth->acl_get('m_'))
|
||||||
|
{
|
||||||
|
$forum_list = get_forum_list('m_');
|
||||||
|
|
||||||
|
if (!sizeof($forum_list))
|
||||||
|
{
|
||||||
|
trigger_error('MODULE_NOT_EXIST');
|
||||||
|
}
|
||||||
|
|
||||||
|
// We do not check all forums, only the first one should be sufficiant.
|
||||||
|
$forum_id = $forum_list[0];
|
||||||
|
}
|
||||||
|
|
||||||
// Instantiate module system and generate list of available modules
|
// Instantiate module system and generate list of available modules
|
||||||
$mcp->create('mcp', "mcp.$phpEx$SID", $post_id, $topic_id, $forum_id, $module, $mode);
|
$mcp->create('mcp', "mcp.$phpEx$SID", $post_id, $topic_id, $forum_id, $module, $mode);
|
||||||
|
|
||||||
|
|
|
@ -427,6 +427,7 @@ switch ($mode)
|
||||||
'S_CUSTOM_FIELDS' => (sizeof($profile_fields)) ? true : false,
|
'S_CUSTOM_FIELDS' => (sizeof($profile_fields)) ? true : false,
|
||||||
|
|
||||||
'U_ADD_FRIEND' => "ucp.$phpEx$SID&i=zebra&add=" . urlencode($member['username']),
|
'U_ADD_FRIEND' => "ucp.$phpEx$SID&i=zebra&add=" . urlencode($member['username']),
|
||||||
|
'U_ADD_FOE' => "ucp.$phpEx$SID&i=zebra&mode=foes&add=" . urlencode($member['username']),
|
||||||
'U_ACTIVE_FORUM' => "viewforum.$phpEx$SID&f=$active_f_id",
|
'U_ACTIVE_FORUM' => "viewforum.$phpEx$SID&f=$active_f_id",
|
||||||
'U_ACTIVE_TOPIC' => "viewtopic.$phpEx$SID&t=$active_t_id",)
|
'U_ACTIVE_TOPIC' => "viewtopic.$phpEx$SID&t=$active_t_id",)
|
||||||
);
|
);
|
||||||
|
|
|
@ -1306,7 +1306,7 @@ unset($user_cache);
|
||||||
|
|
||||||
// Update topic view and if necessary attachment view counters ... but only
|
// Update topic view and if necessary attachment view counters ... but only
|
||||||
// if this is the first 'page view'
|
// if this is the first 'page view'
|
||||||
if (!preg_match("#&t=$topic_id#", $user->data['session_page']))
|
if (isset($user->data['session_page']) && !preg_match("#&t=$topic_id#", $user->data['session_page']))
|
||||||
{
|
{
|
||||||
$sql = 'UPDATE ' . TOPICS_TABLE . '
|
$sql = 'UPDATE ' . TOPICS_TABLE . '
|
||||||
SET topic_views = topic_views + 1, topic_last_view_time = ' . time() . "
|
SET topic_views = topic_views + 1, topic_last_view_time = ' . time() . "
|
||||||
|
|
Loading…
Add table
Reference in a new issue