Quote:
Originally Posted by erikajune
I am still getting this error once and awhile:
When I get this error, it is on a "No Action Found" page. If I refresh, the error goes away. But I still get it somewhere in the shop pages once and awhile.
I have done this several times:
But it doesn't fix it.
If you need to see what I mean:
www.onlineparents.net/community
Log in: testmember
Pass: test
Standalone, vB3 Gold
Thanks for the help!  It otherwise works very well.
|
well, i haven't checked the code much, so, Link or Zak have to find the bug themselves, but as a short solution this might help:
find this code:
PHP Code:
if (!isset($storeactions) || empty($storeactions)) {
$message = "No actions found...";
uttstore_print_end_message($message);
}
and replace with
PHP Code:
if (!is_array($storeactions)) {
$message = "No actions found...";
uttstore_print_end_message($message);
}