aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-09-21 14:51:39 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-10-09 10:15:40 +0200
commitcebc064f4c15b9c53210cc3729756b4d7888041b (patch)
tree6714a181ff0434cc31bc560855203c03658612c2 /phpBB/phpbb
parente158db5daa8b9eedfea9d17b5d678320ac7f8f61 (diff)
downloadforums-cebc064f4c15b9c53210cc3729756b4d7888041b.tar
forums-cebc064f4c15b9c53210cc3729756b4d7888041b.tar.gz
forums-cebc064f4c15b9c53210cc3729756b4d7888041b.tar.bz2
forums-cebc064f4c15b9c53210cc3729756b4d7888041b.tar.xz
forums-cebc064f4c15b9c53210cc3729756b4d7888041b.zip
[ticket/14168] Coding guidelines fixes
PHPBB3-14168
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/attachment/delete.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/attachment/delete.php b/phpBB/phpbb/attachment/delete.php
index 32469c124c..4c863a2205 100644
--- a/phpBB/phpbb/attachment/delete.php
+++ b/phpBB/phpbb/attachment/delete.php
@@ -216,20 +216,20 @@ class delete
case 'message':
$this->sql_id = 'post_msg_id';
$this->sql_where = ' AND in_message = ' . ($mode == 'message' ? 1 : 0);
- break;
+ break;
case 'topic':
$this->sql_id = 'topic_id';
- break;
+ break;
case 'user':
$this->sql_id = 'poster_id';
- break;
+ break;
case 'attach':
default:
$this->sql_id = 'attach_id';
- break;
+ break;
}
}