1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-19 20:21:51 +02:00

Corrected #2041. Issue #6

This commit is contained in:
Cameron 2016-11-27 10:37:34 -08:00
parent 7f2f99c0ad
commit 8cd416debf

View File

@ -394,7 +394,10 @@ abstract class e_marketplace_adapter_abstract
if(!file_exists(e_TEMP.$localfile))
{
$mes->addError( TPVLAN_83." <a href='".$remotefile."'>".TPVLAN_84."</a>");
$srch = array("[", "]");
$repl = array("<a href='".$remotefile."'>", "</a>");
$mes->addError( TPVLAN_83." ".str_replace($srch, $repl, TPVLAN_84));
if(E107_DEBUG_LEVEL > 0)
{