1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 09:46:46 +02:00
- more label fixes
- simpler approach to get input cursor text


git-svn-id: file:///svn/phpbb/trunk@7485 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-05-06 15:31:39 +00:00
parent 1e74ea85c5
commit 6205be1e74
42 changed files with 177 additions and 177 deletions

View File

@@ -18,7 +18,7 @@ class mcp_logs
var $u_action;
var $p_master;
function mcp_main(&$p_master)
function mcp_logs(&$p_master)
{
$this->p_master = &$p_master;
}

View File

@@ -598,7 +598,7 @@ function mcp_move_topic($topic_ids)
$db->sql_transaction('begin');
$sql = 'SELECT SUM(topic_replies + 1) as topic_posts
$sql = 'SELECT SUM(t.topic_replies + 1) as topic_posts
FROM ' . TOPICS_TABLE . ' t
WHERE ' . $db->sql_in_set('t.topic_id', $topic_ids);
$result = $db->sql_query($sql);

View File

@@ -18,7 +18,7 @@ class mcp_queue
var $p_master;
var $u_action;
function mcp_main(&$p_master)
function mcp_queue(&$p_master)
{
$this->p_master = &$p_master;
}

View File

@@ -18,7 +18,7 @@ class mcp_reports
var $p_master;
var $u_action;
function mcp_main(&$p_master)
function mcp_reports(&$p_master)
{
$this->p_master = &$p_master;
}