From 85651161844630ad199f12f8b82856c2f6fe0ec0 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 28 Sep 2005 20:26:32 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20La=20recherche=20du=20logo=20se=20faisai?= =?UTF-8?q?t=20dans=20le=20mauvais=20r=E9pertoire?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/lib/functions.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/lib/functions.inc.php b/htdocs/lib/functions.inc.php index 7224c2e9f94..61a8eec0641 100644 --- a/htdocs/lib/functions.inc.php +++ b/htdocs/lib/functions.inc.php @@ -885,7 +885,8 @@ function loginfunction() '; -if (file_exists(DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/login_logo.png')) +// Affiche logo du theme si existe, sinon logo commun +if (file_exists(DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/img/login_logo.png')) { print ''; }