VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Development & Testing => Topic started by: vasiljevski on April 09, 2012, 15:17:43 PM

Title: Possibly typo in productdetails view
Post by: vasiljevski on April 09, 2012, 15:17:43 PM
In components/com_virtuemart/views/productdetails/view.html.php, line 127:

$params = new JParameter();

should be:

$params = new JParameter('');

Creates a notice in Joomla 1.5, not a big deal, but can be easily solved :)
Title: Re: Possibly typo in productdetails view
Post by: Thomas Kuschel on April 12, 2012, 15:57:11 PM
Thanks vasiljevski, this helps to remove a warning and 2 notices: (Just to feed the search database listed notices)
Warning: Missing argument 1 for JParameter::__construct(), called in ../components/com_virtuemart/views/productdetails/view.html.php on line 127 and defined in ../libraries/joomla/html/parameter.php on line 76
Notice: Undefined variable: data in ../libraries/joomla/html/parameter.php on line 83
Notice: Undefined variable: data in ../libraries/joomla/html/parameter.php on line 91
Thomas
Title: Re: Possibly typo in productdetails view
Post by: Studio 42 on April 12, 2012, 16:03:06 PM
Hi,
Tks for tip ;)
Corrected for next release.