--- biblio.pages.inc	2008-11-07 13:43:46.000000000 +0100
+++ biblio.pages.inc.patched	2008-11-07 13:44:09.000000000 +0100
@@ -47,7 +47,7 @@
   $arg_list = func_get_args();
   $inline = in_array('inline', $arg_list);
   $inline = in_array('profile',$arg_list)?'profile':$inline;
-  $query_info = biblio_build_query($arg_list);
+  $query_info = biblio_build_query($arg_list, !$inline);
   if ($rss){
   	 biblio_filter_feed($query, $terms, $rss_title, $rss_description, $rss_link);
   }else{
@@ -65,7 +65,7 @@
  *
  *
  */
-function biblio_build_query($arg_list) {
+function biblio_build_query($arg_list, $with_filters = TRUE) {
 global $user;
 static $bcc; //biblio_contributor (bc) count , increase for every invocation
 if ( !isset( $bcc ) ) $bcc = 0;
@@ -128,8 +128,10 @@
  * $numargs = func_num_args();
   $arg_list = func_get_args();
 */
-  foreach ($session as $filter) {
-    $arg_list = array_merge($arg_list, $filter);
+  if ($with_filters) {
+    foreach ($session as $filter) {
+      $arg_list = array_merge($arg_list, $filter);
+    }
   }
 
   if (count($arg_list) ) {
