diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-05-31 12:56:44 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-05-31 12:56:44 +0200 |
commit | 36071ded9d37f38d446d17013b90dff9da94245b (patch) | |
tree | 95a0568c9636b589c35b537798ede6462752dec0 /phpBB/includes/mcp/mcp_logs.php | |
parent | f4dcb69dae9964c7d6ca9d06828d773a63a3abed (diff) | |
download | forums-36071ded9d37f38d446d17013b90dff9da94245b.tar forums-36071ded9d37f38d446d17013b90dff9da94245b.tar.gz forums-36071ded9d37f38d446d17013b90dff9da94245b.tar.bz2 forums-36071ded9d37f38d446d17013b90dff9da94245b.tar.xz forums-36071ded9d37f38d446d17013b90dff9da94245b.zip |
[ticket/12639] Delete entry in admin-log leads to mysql-error
PHPBB3-12639
Diffstat (limited to 'phpBB/includes/mcp/mcp_logs.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_logs.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_logs.php b/phpBB/includes/mcp/mcp_logs.php index a0c1bc02ec..bcaf6277a8 100644 --- a/phpBB/includes/mcp/mcp_logs.php +++ b/phpBB/includes/mcp/mcp_logs.php @@ -115,7 +115,6 @@ class mcp_logs if ($deletemark && sizeof($marked)) { $conditions = array( - 'log_type' => LOG_MOD, 'forum_id' => $forum_list, 'log_id' => $marked, ); @@ -127,7 +126,6 @@ class mcp_logs $keywords = utf8_normalize_nfc(request_var('keywords', '', true)); $conditions = array( - 'log_type' => LOG_MOD, 'forum_id' => $forum_list, 'keywords' => $keywords, ); |