From 4260d5765ff40a99ef794af76da0d8047f731abb Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 30 Nov 2018 11:50:32 +0100 Subject: [PATCH] Fix bad trans key --- htdocs/core/modules/modWebsite.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/modules/modWebsite.class.php b/htdocs/core/modules/modWebsite.class.php index ade9a23e759..01490278566 100644 --- a/htdocs/core/modules/modWebsite.class.php +++ b/htdocs/core/modules/modWebsite.class.php @@ -167,7 +167,7 @@ class modWebsite extends DolibarrModules if ($result < 0) { $langs->load("errors"); - $this->error=$langs->trans('ErrorFailToCopyDirectory',$src,$dest); + $this->error=$langs->trans('ErrorFailToCopyDir',$src,$dest); return 0; } }