diff --git a/library/Class/Profil.php b/library/Class/Profil.php
index a3660fa426e5055c6e95db8ce4915f1f0f260b6a..b1780799f1d067404421ea57085663c87a41e36b 100644
--- a/library/Class/Profil.php
+++ b/library/Class/Profil.php
@@ -1918,7 +1918,7 @@ class Class_Profil extends Storm_Model_Abstract {
 
 
 	public function getModuleTitle($id_module) {
-		if(!array_key_exists('titre', $this->getModulePref($id_module)))
+		if(!array_key_exists('titre', ($pref_module = $this->getModulePref($id_module))))
 			return '';
 
 		return $pref_module['titre'];
diff --git a/library/Class/Systeme/ModulesAccueil/DomainBrowser.php b/library/Class/Systeme/ModulesAccueil/DomainBrowser.php
index d5048065b2f3c93429dc3a9c97de710e5fdbb1d4..c1d4e173d8a88d785b4ab9eaf25272bda697784e 100644
--- a/library/Class/Systeme/ModulesAccueil/DomainBrowser.php
+++ b/library/Class/Systeme/ModulesAccueil/DomainBrowser.php
@@ -16,12 +16,12 @@
  *
  * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
  * along with BOKEH; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
  */
 
 
 class Class_Systeme_ModulesAccueil_DomainBrowser extends Class_Systeme_ModulesAccueil_Null{
-	
+
 	protected $_group = Class_Systeme_ModulesAccueil::GROUP_RECH;
 
 	protected $_libelle = 'Domaines';
@@ -34,6 +34,7 @@ class Class_Systeme_ModulesAccueil_DomainBrowser extends Class_Systeme_ModulesAc
 	protected $_popupHeight = 700;
 
 	protected $_defaultValues = ['titre' => 'Domaines',
+															 'allow_breadcrumb' => 0,
 															 'root_domain_id' => 0,
 															 'display_mode' => Class_Systeme_ModulesAppli::LISTE_FORMAT_ACCORDEON];