1
0
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:
e107steved
2008-10-15 21:23:51 +00:00
parent 01ce3264d1
commit ca0b2306a2
2 changed files with 9 additions and 5 deletions

View File

@@ -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;
}
}
}