Bo to:
/* Search */
$table->quickSearch = function( $string ) {
return \IPS\Db::i()->like( 'name', $string, TRUE, TRUE, \IPS\core\extensions\core\LiveSearch\Members::canPerformInlineSearch() );
};
Zwraca like, więc nawet widać w błędzie:
$table->quickSearch = function( $string ) {
return 'ee';
};
Błąd:
Zatem Tobie potrzeba coś takiego:
$table = new \IPS\Helpers\Table\Db( 'marketplacekeys_data', $this->url );
$table->joins = array(
array( 'select' => 'dl.*', 'from' => array( 'downloads_files', 'dl' ), 'where' => "dl.file_id=marketplacekeys_data.file_id" )
);
I niżej:
$table->quickSearch = function( $string ) {
return \IPS\Db::i()->like( 'dl.file_name', $string, TRUE, TRUE, TRUE );
};
Oczywiście trzeba dopasować do Twoich tabel i kodu!