Index: docs/CHANGELOG.html
===================================================================
--- docs/CHANGELOG.html (Revision 10490)
+++ docs/CHANGELOG.html (Arbeitskopie)
@@ -96,6 +96,7 @@
[Fix] Honor minimum and maximum password length in generated passwords as much as we can. (Bug #13181)
[Fix] No longer return the character O in generated random strings and passwords. (Bug #57345)
[Fix] Some XHTML corrections in subsilver2. (Bug #57505)
+ [Fix] Restrict search for language/../iso.txt to folders. (Bug #57795)
[Feature] Support for Microsoft's Native SQL Server Driver for PHP (Bug #57055 - Patch by Chris Pucci at Microsoft)
Index: includes/acp/acp_language.php
===================================================================
--- includes/acp/acp_language.php (Revision 10490)
+++ includes/acp/acp_language.php (Arbeitskopie)
@@ -1120,6 +1120,11 @@
{
while (($file = readdir($dp)) !== false)
{
+ if (!is_dir($phpbb_root_path . 'language/' . $file))
+ {
+ continue;
+ }
+
if ($file[0] != '.' && file_exists("{$phpbb_root_path}language/$file/iso.txt"))
{
if (!in_array($file, $installed))