Hi, it seems that in biblio_show_results, $inline=='profile' returns true when $inline = true. Therefore, one needs to make sure that $inline is also a string in that test.

Thx for your great work !

Regards

CommentFileSizeAuthor
brokenShow.patch455 bytesvrabaud
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

rjerome’s picture

Thanks, could you try just putting a triple equals sign instead i.e.

if ($inline === 'profile') {

should accomplish the same as

 if ( (is_string($inline)) && ($inline == 'profile') ) {
vrabaud’s picture

ok, that fixes it too for me. Thx !

rjerome’s picture

Status: Active » Fixed

Ok, I'm going to go with that solution then.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.