1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-01 20:19:13 +02:00

[ticket/11700] Use underscores in avatar driver template file names

PHPBB3-11700
This commit is contained in:
Nils Adermann 2013-09-16 06:44:16 +02:00
parent 570b83b046
commit 77ffd5c6ba

View File

@ -235,7 +235,7 @@ class manager
*/
static public function prepare_driver_name($name)
{
return str_replace('.', '_', $name);
return str_replace(array('\\', '.'), '_', $name);
}
/**