From bd33acd012f96096e5ef6ba131aac0b260aea6c2 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Wed, 11 Jul 2007 15:03:06 +0000 Subject: some fixes git-svn-id: file:///svn/phpbb/trunk@7866 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/acm/acm_file.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'phpBB/includes/acm/acm_file.php') diff --git a/phpBB/includes/acm/acm_file.php b/phpBB/includes/acm/acm_file.php index 64a85db0b0..a1734c1c55 100644 --- a/phpBB/includes/acm/acm_file.php +++ b/phpBB/includes/acm/acm_file.php @@ -269,7 +269,8 @@ class acm $found = false; foreach ($table as $check_table) { - if (strpos($check_line, $check_table . ' ') !== false) + // Better catch partial table names than no table names. ;) + if (strpos($check_line, $check_table) !== false) { $found = true; break; -- cgit v1.2.1