zc 1.5.5 with SbyA from github

Apologies if I'm asking in wrong forum. I'm getting a log error that I think is SbyA related.

-Apr-2016 02:16:07 UTC] Request URI: /index.php?main_page=product_info&products_id=10, IP address: 164.132.161.11
#1 queryFactoryResult->__construct() called at /xxxxxxxxxxxxx/tpl_modules_attributes.php:59]
#2 require(/xxxxxxxxxxxxx/templates/tpl_modules_attributes.php) called at [xxxxxxxxxxxx/templates/tpl_product_info_display.php:118]
#3 require(/xxxxxxxxx/templates/tpl_product_info_display.php) called at [xxxxxxxxxx/product_info/main_template_vars.php:178]
#4 require(/xxxxx/includes/modules/pages/product_info/main_template_vars.php) called at [/xxxxxxxxxxxx/tpl_main_page.php:251]
#5 require(/xxxxxx/common/tpl_main_page.php) called at [/xxxxx/public_html/index.php:97]

[09-Apr-2016 02:16:07 UTC] PHP Warning: Missing argument 1 for queryFactoryResult::__construct(), called in /xxxxxxxxx/tpl_modules_attributes.php on line 59 and defined in /xxxxxxx/includes/classes/db/mysql/query_factory.php on line 550
The bit in tpl_modules/attributes is:
PHP Code:
 $inSBA = new queryFactoryResult;
         $inSBA->EOF = true;
         ?>
         <h3 id="attribsOptionsText"><?php echo TEXT_PRODUCT_OPTIONS?>         </h3>
<?php // END NON-SBA SPECIFIC: show please select unless all are readonly ?>
and the bit in query_factory is:
PHP Code:
   Constructs a new Query Factory Result
   
*/
  function 
__construct($link) {
    
$this->is_cached false;
    
$this->EOF true;
    
$this->result = array();
    
$this->cursor 0;
    
$this->link $link;
  } 
I don't think this is causing me grief other than running up log files, so not sure what I should do about it.