That is not possible because I'm developing on my personal laptop.
I managed to solve it my self. The problem seemed to be that the book id wasn't properly set. I made it work by putting theese lines in the view_bl case of booklibrary.php
$request_token=explode("/",$_SERVER["REQUEST_URI"]);
for ($i = 1; $i <= count($request_token); $i++) {
if($request_token[$i]=="view_bl"
{
$id=$request_token[$i+3];
break;
}
}
However, I really don't like this solution, so if you have any idea that fits better to the joomla beahvior I'd be glad to hear.
Apparently that solved also the book detail from search result issue.
Regards
Alessandro Tonucci