mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-25 08:41:53 +02:00
fixed tiny bugs
git-svn-id: file:///svn/phpbb/trunk@5711 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f49a8147b7
commit
7f497764e1
@ -1300,13 +1300,13 @@ class acp_forums
|
||||
POLL_VOTES_TABLE => 'pv.topic_id',
|
||||
);
|
||||
|
||||
$sql = 'DELETE ' . POSTS_TABLE . ' p';
|
||||
$sql = 'DELETE ';
|
||||
$sql_using = "\nFROM " . POSTS_TABLE . ' p';
|
||||
$sql_where = "\nWHERE p.forum_id = $forum_id\n";
|
||||
|
||||
foreach ($tables_ary as $table => $field)
|
||||
{
|
||||
$sql .= ", $table " . strtok($field, '.');
|
||||
// $sql .= ", $table " . strtok($field, '.');
|
||||
$sql_using .= ", $table " . strtok($field, '.');
|
||||
$sql_where .= "\nAND $field = p." . strtok('');
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
# Table: phpbb_attachments
|
||||
# Table: 'phpbb_attachments'
|
||||
CREATE TABLE phpbb_attachments (
|
||||
attach_id mediumint(8) UNSIGNED NOT NULL auto_increment,
|
||||
post_msg_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
@ -29,7 +29,7 @@ CREATE TABLE phpbb_attachments (
|
||||
KEY filesize (filesize)
|
||||
);
|
||||
|
||||
# Table: phpbb_auth_groups
|
||||
# Table: 'phpbb_auth_groups'
|
||||
CREATE TABLE phpbb_auth_groups (
|
||||
group_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
@ -40,7 +40,7 @@ CREATE TABLE phpbb_auth_groups (
|
||||
KEY auth_option_id (auth_option_id)
|
||||
);
|
||||
|
||||
# Table: phpbb_auth_options
|
||||
# Table: 'phpbb_auth_options'
|
||||
CREATE TABLE phpbb_auth_options (
|
||||
auth_option_id mediumint(8) UNSIGNED NOT NULL auto_increment,
|
||||
auth_option char(20) NOT NULL,
|
||||
@ -51,7 +51,7 @@ CREATE TABLE phpbb_auth_options (
|
||||
KEY auth_option (auth_option)
|
||||
);
|
||||
|
||||
# Table: phpbb_auth_roles
|
||||
# Table: 'phpbb_auth_roles'
|
||||
CREATE TABLE phpbb_auth_roles (
|
||||
role_id mediumint(8) UNSIGNED NOT NULL auto_increment,
|
||||
role_name varchar(50) DEFAULT '' NOT NULL,
|
||||
@ -61,7 +61,7 @@ CREATE TABLE phpbb_auth_roles (
|
||||
KEY role_type (role_type)
|
||||
);
|
||||
|
||||
# Table: phpbb_auth_roles_data
|
||||
# Table: 'phpbb_auth_roles_data'
|
||||
CREATE TABLE phpbb_auth_roles_data (
|
||||
role_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
auth_option_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
@ -69,7 +69,7 @@ CREATE TABLE phpbb_auth_roles_data (
|
||||
PRIMARY KEY (role_id, auth_option_id)
|
||||
);
|
||||
|
||||
# Table: phpbb_auth_users
|
||||
# Table: 'phpbb_auth_users'
|
||||
CREATE TABLE phpbb_auth_users (
|
||||
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
@ -241,7 +241,7 @@ CREATE TABLE phpbb_forums (
|
||||
KEY forum_last_post_id (forum_last_post_id)
|
||||
);
|
||||
|
||||
# Table: phpbb_forum_access
|
||||
# Table: 'phpbb_forum_access'
|
||||
CREATE TABLE phpbb_forum_access (
|
||||
forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
|
@ -148,7 +148,7 @@ $lang = array_merge($lang, array(
|
||||
'POST_NORMAL' => 'Normal',
|
||||
'POST_REPLY' => 'Post a reply',
|
||||
'POST_REVIEW' => 'Post Review',
|
||||
'POST_REVIEW_EXPLAIN' => 'At least one new post has been made to this topic. You may wish to review your post inlight of this.',
|
||||
'POST_REVIEW_EXPLAIN' => 'At least one new post has been made to this topic. You may wish to review your post in light of this.',
|
||||
'POST_STORED' => 'Your message has been posted successfully',
|
||||
'POST_STORED_MOD' => 'Your message has been saved but requires approval',
|
||||
'POST_TOPIC' => 'Post a new topic',
|
||||
|
@ -27,7 +27,7 @@ img_btn_post = {LANG}/btn_post.gif*27*97
|
||||
img_btn_post_pm = {LANG}/btn_post_pm.gif*27*97
|
||||
img_btn_reply = {LANG}/btn_reply.gif*27*97
|
||||
img_btn_reply_pm = {LANG}/btn_reply_pm.gif*20*90
|
||||
img_img_btn_locked = {LANG}/btn_locked.gif*27*97
|
||||
img_btn_locked = {LANG}/btn_locked.gif*27*97
|
||||
img_btn_profile = {LANG}/btn_profile.gif*20*72
|
||||
img_btn_pm = {LANG}/btn_pm.gif*20*72
|
||||
img_btn_delete = {LANG}/btn_delete.gif*20*20
|
||||
|
Loading…
x
Reference in New Issue
Block a user