Warning: Missing argument 1 for AdminUIHelper::startAdminArea(), ...

Started by coxi, November 10, 2013, 22:23:22 PM

Previous topic - Next topic

coxi

Hi,
In backend, viewing orders, I notice a warning linge saying : 
Warning: Missing argument 1 for AdminUIHelper::startAdminArea(), called in /xxx/xxxx/xxxx.fr/administrator/components/com_virtuemart/views/orders/tmpl/order.php on line 28 and defined in /xxx/xxxx/xxxxx.fr/administrator/components/com_virtuemart/helpers/adminui.php on line 29
I read some post about that but it seem that a correction has been made. (add $this as argument to some lines in order.php... but message is still here.

Any Idea ?

alatak

Hello
in file administrator/components/com_virtuemart/views/orders/tmpl/order.php
Replace the line
AdminUIHelper::startAdminArea();

with
AdminUIHelper::startAdminArea($this);

the error must disappear