diff options
| author | Cesar G <prototech91@gmail.com> | 2014-11-21 12:48:26 -0800 | 
|---|---|---|
| committer | Cesar G <prototech91@gmail.com> | 2014-11-21 12:48:26 -0800 | 
| commit | 8d8c2930d2f92fd28e3d0a7b33d9b6ec152add6c (patch) | |
| tree | 3d51611591d0200a05ac95ef23db7da9a7f93a67 | |
| parent | f719803fdc8f16430ed3e85625dd337da1de52d9 (diff) | |
| download | forums-8d8c2930d2f92fd28e3d0a7b33d9b6ec152add6c.tar forums-8d8c2930d2f92fd28e3d0a7b33d9b6ec152add6c.tar.gz forums-8d8c2930d2f92fd28e3d0a7b33d9b6ec152add6c.tar.bz2 forums-8d8c2930d2f92fd28e3d0a7b33d9b6ec152add6c.tar.xz forums-8d8c2930d2f92fd28e3d0a7b33d9b6ec152add6c.zip | |
[ticket/13354] Fix incorrect column name when deleting all topic logs.
PHPBB3-13354
| -rw-r--r-- | phpBB/includes/mcp/mcp_logs.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/phpBB/includes/mcp/mcp_logs.php b/phpBB/includes/mcp/mcp_logs.php index 92dcdb5499..9c76f0df90 100644 --- a/phpBB/includes/mcp/mcp_logs.php +++ b/phpBB/includes/mcp/mcp_logs.php @@ -137,7 +137,7 @@ class mcp_logs  					if ($mode == 'topic_logs')  					{ -						$conditions['topic_logs'] = $topic_id; +						$conditions['topic_id'] = $topic_id;  					}  					$phpbb_log->delete('mod', $conditions); | 
