mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-26 20:08:55 +00:00
[ticket/11700] Use underscores in avatar driver template file names
PHPBB3-11700
This commit is contained in:
parent
570b83b046
commit
77ffd5c6ba
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue