1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-25 16:49:58 +02:00

fixed tiny bugs

git-svn-id: file:///svn/phpbb/trunk@5711 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2006-03-25 13:05:28 +00:00
parent f49a8147b7
commit 7f497764e1
4 changed files with 11 additions and 11 deletions

View File

@ -1300,13 +1300,13 @@ class acp_forums
POLL_VOTES_TABLE => 'pv.topic_id', POLL_VOTES_TABLE => 'pv.topic_id',
); );
$sql = 'DELETE ' . POSTS_TABLE . ' p'; $sql = 'DELETE ';
$sql_using = "\nFROM " . POSTS_TABLE . ' p'; $sql_using = "\nFROM " . POSTS_TABLE . ' p';
$sql_where = "\nWHERE p.forum_id = $forum_id\n"; $sql_where = "\nWHERE p.forum_id = $forum_id\n";
foreach ($tables_ary as $table => $field) foreach ($tables_ary as $table => $field)
{ {
$sql .= ", $table " . strtok($field, '.'); // $sql .= ", $table " . strtok($field, '.');
$sql_using .= ", $table " . strtok($field, '.'); $sql_using .= ", $table " . strtok($field, '.');
$sql_where .= "\nAND $field = p." . strtok(''); $sql_where .= "\nAND $field = p." . strtok('');
} }

View File

@ -4,7 +4,7 @@
# $Id$ # $Id$
# #
# Table: phpbb_attachments # Table: 'phpbb_attachments'
CREATE TABLE phpbb_attachments ( CREATE TABLE phpbb_attachments (
attach_id mediumint(8) UNSIGNED NOT NULL auto_increment, attach_id mediumint(8) UNSIGNED NOT NULL auto_increment,
post_msg_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, post_msg_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
@ -29,7 +29,7 @@ CREATE TABLE phpbb_attachments (
KEY filesize (filesize) KEY filesize (filesize)
); );
# Table: phpbb_auth_groups # Table: 'phpbb_auth_groups'
CREATE TABLE phpbb_auth_groups ( CREATE TABLE phpbb_auth_groups (
group_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, group_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
forum_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) KEY auth_option_id (auth_option_id)
); );
# Table: phpbb_auth_options # Table: 'phpbb_auth_options'
CREATE TABLE phpbb_auth_options ( CREATE TABLE phpbb_auth_options (
auth_option_id mediumint(8) UNSIGNED NOT NULL auto_increment, auth_option_id mediumint(8) UNSIGNED NOT NULL auto_increment,
auth_option char(20) NOT NULL, auth_option char(20) NOT NULL,
@ -51,7 +51,7 @@ CREATE TABLE phpbb_auth_options (
KEY auth_option (auth_option) KEY auth_option (auth_option)
); );
# Table: phpbb_auth_roles # Table: 'phpbb_auth_roles'
CREATE TABLE phpbb_auth_roles ( CREATE TABLE phpbb_auth_roles (
role_id mediumint(8) UNSIGNED NOT NULL auto_increment, role_id mediumint(8) UNSIGNED NOT NULL auto_increment,
role_name varchar(50) DEFAULT '' NOT NULL, role_name varchar(50) DEFAULT '' NOT NULL,
@ -61,7 +61,7 @@ CREATE TABLE phpbb_auth_roles (
KEY role_type (role_type) KEY role_type (role_type)
); );
# Table: phpbb_auth_roles_data # Table: 'phpbb_auth_roles_data'
CREATE TABLE phpbb_auth_roles_data ( CREATE TABLE phpbb_auth_roles_data (
role_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, role_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
auth_option_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) PRIMARY KEY (role_id, auth_option_id)
); );
# Table: phpbb_auth_users # Table: 'phpbb_auth_users'
CREATE TABLE phpbb_auth_users ( CREATE TABLE phpbb_auth_users (
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
forum_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) KEY forum_last_post_id (forum_last_post_id)
); );
# Table: phpbb_forum_access # Table: 'phpbb_forum_access'
CREATE TABLE phpbb_forum_access ( CREATE TABLE phpbb_forum_access (
forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,

View File

@ -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_post_pm = {LANG}/btn_post_pm.gif*27*97
img_btn_reply = {LANG}/btn_reply.gif*27*97 img_btn_reply = {LANG}/btn_reply.gif*27*97
img_btn_reply_pm = {LANG}/btn_reply_pm.gif*20*90 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_profile = {LANG}/btn_profile.gif*20*72
img_btn_pm = {LANG}/btn_pm.gif*20*72 img_btn_pm = {LANG}/btn_pm.gif*20*72
img_btn_delete = {LANG}/btn_delete.gif*20*20 img_btn_delete = {LANG}/btn_delete.gif*20*20