1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +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) static public function prepare_driver_name($name)
{ {
return str_replace('.', '_', $name); return str_replace(array('\\', '.'), '_', $name);
} }
/** /**