VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: littlesnack on September 07, 2012, 17:25:56 PM

Title: Small bug in productdetails controller (Jtext and translation)
Post by: littlesnack on September 07, 2012, 17:25:56 PM
Line 211 from components\com_virtuemart\controllers\productdetails.php
VmInfo (JText::_ ('YOU MUST LOGIN FIRST'));
just shows YOU MUST LOGIN FIRST for any language, instead of using the correct JText from the active language.

It should be corrected to:
VmInfo (JText::_ ('JGLOBAL_YOU_MUST_LOGIN_FIRST'));
Title: Re: Small bug in productdetails controller (Jtext and translation)
Post by: Milbo on September 08, 2012, 15:29:50 PM
thx, corrected