1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-17 20:01:47 +02:00

Admin-UI: fix for boolean inline editing style. Disabled link-image replacement while in the admin area.

This commit is contained in:
Cameron
2014-11-15 13:30:55 -08:00
parent 1734880bbb
commit 65ffea010d
2 changed files with 7 additions and 3 deletions

View File

@@ -1618,7 +1618,7 @@ class e_parse extends e_parser
// Convert URL's to clickable links, unless modifiers or prefs override
if ($opts['link_click'])
{
if ($opts['link_replace'])
if ($opts['link_replace'] && ADMIN_AREA !== true)
{
$_ext = ($pref['links_new_window'] ? " rel=\"external\"" : "");
$link_text = $pref['link_text'];