diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-11 10:41:03 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-11 10:41:03 +0000 |
commit | 27d86a2e3254d1bba611c449d767baa61939737e (patch) | |
tree | 2214e48cf3962418a1d61bdf988a0eabbaca4884 /phpBB/includes | |
parent | ff0a7e26301a3ef01079335478831cd514de2d45 (diff) | |
download | forums-27d86a2e3254d1bba611c449d767baa61939737e.tar forums-27d86a2e3254d1bba611c449d767baa61939737e.tar.gz forums-27d86a2e3254d1bba611c449d767baa61939737e.tar.bz2 forums-27d86a2e3254d1bba611c449d767baa61939737e.tar.xz forums-27d86a2e3254d1bba611c449d767baa61939737e.zip |
Correct pathname for template
git-svn-id: file:///svn/phpbb/trunk@4378 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php index 9828b26c09..673513fd41 100644 --- a/phpBB/includes/bbcode.php +++ b/phpBB/includes/bbcode.php @@ -118,7 +118,7 @@ class bbcode } $this->template_bitfield = $user->theme[$style]['bbcode_bitfield']; - $this->template_filename = $phpbb_root_path . 'styles/templates/' . $user->theme[$style]['template_path'] . '/bbcode.html'; + $this->template_filename = $phpbb_root_path . 'styles/' . $user->theme[$style]['template_path'] . '/template/bbcode.html'; } $sql = ''; |