mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 20:00:37 +02:00
Bugtracker #4539 - hard coded text in img.bb
This commit is contained in:
@@ -56,18 +56,18 @@ else
|
||||
}
|
||||
else
|
||||
{
|
||||
return ($pref['image_post_disabled_method'] ? "[ image disabled ]" : "Image: $code_text");
|
||||
return ($pref['image_post_disabled_method'] ? CORE_LAN17 : CORE_LAN18.$code_text);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($pref['image_post_disabled_method'])
|
||||
{
|
||||
return '[ image disabled ]';
|
||||
return CORE_LAN17;
|
||||
}
|
||||
else
|
||||
{
|
||||
return "Image: $code_text";
|
||||
return CORE_LAN18.$code_text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user