diff options
author | the_systech <the_systech@users.sourceforge.net> | 2001-11-12 15:32:14 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2001-11-12 15:32:14 +0000 |
commit | 75fadebad1e17176c82be17c7041846e4a3122df (patch) | |
tree | 99df602d1c8eafd2f4e4c2e1a62d53b8531ca592 /phpBB/admin | |
parent | 8237698bac75696d37c175499c00eadc2f9c2368 (diff) | |
download | forums-75fadebad1e17176c82be17c7041846e4a3122df.tar forums-75fadebad1e17176c82be17c7041846e4a3122df.tar.gz forums-75fadebad1e17176c82be17c7041846e4a3122df.tar.bz2 forums-75fadebad1e17176c82be17c7041846e4a3122df.tar.xz forums-75fadebad1e17176c82be17c7041846e4a3122df.zip |
Bugfixs... Darn those bugs... Where's an exterminator when you need one?
git-svn-id: file:///svn/phpbb/trunk@1304 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin')
-rw-r--r-- | phpBB/admin/admin_smilies.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/admin/admin_smilies.php b/phpBB/admin/admin_smilies.php index 1d730b1c03..cde8ed250d 100644 --- a/phpBB/admin/admin_smilies.php +++ b/phpBB/admin/admin_smilies.php @@ -348,7 +348,7 @@ switch($mode) "S_SMILEY_ACTION" => append_sid("admin_smilies.$phpEx"), "S_HIDDEN_FIELDS" => $s_hidden_fields, "S_FILENAME_OPTIONS" => $filename_list, - "S_SMILEY_BASEDIR" => $phpbb_root_path . '/' . $board_config['smilies_path']) + "S_SMILEY_BASEDIR" => $phpbb_root_path . $board_config['smilies_path']) ); $template->pparse("body"); @@ -381,12 +381,12 @@ switch($mode) "L_SUBMIT" => $lang['Submit_changes'], "L_RESET" => $lang['Reset_changes'], - "SMILEY_IMG" => $phpbb_root_path . '/' . $board_config['smilies_path'] . '/' . $smiley_images[0], + "SMILEY_IMG" => $phpbb_root_path . $board_config['smilies_path'] . '/' . $smiley_images[0], "S_SMILEY_ACTION" => append_sid("admin_smilies.$phpEx"), "S_HIDDEN_FIELDS" => $s_hidden_fields, "S_FILENAME_OPTIONS" => $filename_list, - "S_SMILEY_BASEDIR" => $phpbb_root_path . '/' . $board_config['smilies_path']) + "S_SMILEY_BASEDIR" => $phpbb_root_path . $board_config['smilies_path']) ); $template->pparse("body"); @@ -515,7 +515,7 @@ switch($mode) "ROW_COLOR" => "#" . $row_color, "ROW_CLASS" => $row_class, - "SMILEY_IMG" => $phpbb_root_path . '/' . $board_config['smilies_path'] . '/' . $smilies[$i]['smile_url'], + "SMILEY_IMG" => $phpbb_root_path . $board_config['smilies_path'] . '/' . $smilies[$i]['smile_url'], "CODE" => $smilies[$i]['code'], "EMOT" => $smilies[$i]['emoticon'], |