From 45d560957b439bab559decf0f84c35ef21e47a7d Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Wed, 3 Mar 2010 18:43:22 +0100 Subject: [PATCH] LSformElement : fix translation of help infos --- public_html/includes/class/class.LSformElement.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/includes/class/class.LSformElement.php b/public_html/includes/class/class.LSformElement.php index 92802a70..ad17ff07 100644 --- a/public_html/includes/class/class.LSformElement.php +++ b/public_html/includes/class/class.LSformElement.php @@ -190,7 +190,7 @@ class LSformElement { } $return['label'] = $this -> getLabel(); if (isset($this -> params['help_info'])) { - $return['help_info']=$this -> params['help_info']; + $return['help_info']=__($this -> params['help_info']); } return $return; }