Line 17 and 18 of freelink_nonetitle.inc contain errors that prevent the module from correct working
$sql .= 'AND type ="%s';
$result = db_query($sql, $target[1], variable_get('freelinking_nodetitle_searchcontenttype'));
it shoul be
$sql .= 'AND type ="%s"';
$result = db_query($sql, $target[1], variable_get('freelinking_nodetitle_searchcontenttype','none'));
Comments
Comment #1
eafarris commentedCommitted to HEAD. Thanks for the catch.