--- ./biblio.module.orig	2008-10-23 16:43:23.000000000 +0200
+++ ./biblio.module	2008-10-23 16:46:44.000000000 +0200
@@ -319,8 +319,9 @@
   global $user;
   $items = array();
   $base = variable_get('biblio_base', 'biblio');
+  $base_title = variable_get('biblio_base_title', '');
   $items["$base"] = array(
-    'title' => '',
+    'title' => $base_title,
     'page callback' => 'biblio_db_search',
     'access callback' => 'user_access',
     'access arguments' => array(
--- ./biblio.admin.inc.orig	2008-10-23 16:47:40.000000000 +0200
+++ ./biblio.admin.inc	2008-10-23 16:49:26.000000000 +0200
@@ -37,6 +37,13 @@
     '#default_value' => variable_get('biblio_base', 'biblio'),
     '#description' => t('This sets the base URL used to access the biblio module (e.g. /biblio ).')
   );
+  $form['biblio_base_title'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Biblio page title'),
+    '#size' => 20,
+    '#default_value' => variable_get('biblio_base_title', ''),
+    '#description' => t('The page title shown on the base URL.')
+  );
   $form['biblio_rowsperpage'] = array(
     '#type' => 'textfield',
     '#title' => t('Number of results per page'),
