I've seen that warning a couple of times, but wasn't able to reproduce it in my test installation (PHP 5.4.27/XAMPP). I believe, however, that the following teeny change to /YOUR_ADMIN/categories.php (around line 1006) will make the PHP interpreter happy:
Code:
<?php
// Split Page
if ($products_query_numrows > 0) {
//-bof-20140830-lat9-Make sure that pInfo is an object ...
if (!(isset ($pInfo) && is_object ($pInfo))) {
$pInfo = new objectInfo (array ());
}
//-eof-20140830-lat9
if (empty($pInfo->products_id)) {
$pInfo->products_id= $pID;
}
?>