1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-29 20:49:48 +01:00

[ticket/10204] Detect binary file changes in dirs with names containing dots

PHPBB3-10204
This commit is contained in:
Nils Adermann 2011-06-09 05:58:38 +02:00
parent 893d0ae96f
commit 3c60cfd863

View File

@ -177,7 +177,7 @@ class build_package
}
// Is binary?
if (preg_match('/^Binary files ' . $package_name . '\/(.*) and [a-z0-9_-]+\/\1 differ/i', $line, $match))
if (preg_match('/^Binary files ' . $package_name . '\/(.*) and [a-z0-9._-]+\/\1 differ/i', $line, $match))
{
$binary[] = trim($match[1]);
}