diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-24 13:19:20 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-24 13:19:20 -0500 |
commit | 863592a8bedbacf3e7bf6bee458797e819020e6f (patch) | |
tree | a1575ffd81ce07b6fd5323b26c2e18a1dfd69141 /phpBB/includes | |
parent | 44142782095f4a847e575dde40faef867c704220 (diff) | |
download | forums-863592a8bedbacf3e7bf6bee458797e819020e6f.tar forums-863592a8bedbacf3e7bf6bee458797e819020e6f.tar.gz forums-863592a8bedbacf3e7bf6bee458797e819020e6f.tar.bz2 forums-863592a8bedbacf3e7bf6bee458797e819020e6f.tar.xz forums-863592a8bedbacf3e7bf6bee458797e819020e6f.zip |
[ticket/11628] Remove set_style_names function, moved to set_custom_style
PHPBB3-11628
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions_messenger.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php index 0222a57bcc..89dd3c70fc 100644 --- a/phpBB/includes/functions_messenger.php +++ b/phpBB/includes/functions_messenger.php @@ -660,7 +660,7 @@ class messenger { $this->setup_template(); - $this->template->set_style_names(array($path_name), $paths); + $this->template->set_custom_style($path_name, $paths, ''); } } |