1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Corrected default bbcode-button template used in admin area.

This commit is contained in:
Cameron
2014-01-17 07:56:32 -08:00
parent 3c0bef80ec
commit 0d9a480158

View File

@@ -522,7 +522,11 @@ class e_bbcode
$BBCODE_TEMPLATE = $template;
$template = 'comment';
}
else
elseif(ADMIN_AREA)
{
$BBCODE_TEMPLATE = $BBCODE_TEMPLATE_ADMIN;
}
else // Front-end
{
$BBCODE_TEMPLATE = $BBCODE_TEMPLATE;
}