From f255d812d470c915db6ee53bf86d913e6cc40201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Loguercio?= Date: Mon, 8 Aug 2016 18:20:50 -0500 Subject: [PATCH] Fix custom logo file path - Refs BT#11486 --- main/inc/lib/pdf.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/inc/lib/pdf.lib.php b/main/inc/lib/pdf.lib.php index 13ca98794f..1d5b922a8f 100755 --- a/main/inc/lib/pdf.lib.php +++ b/main/inc/lib/pdf.lib.php @@ -95,7 +95,7 @@ class PDF $organization = api_get_setting('Institution'); $img = api_get_path(SYS_CSS_PATH).'themes/' . $theme . '/images/header-logo.png'; - $customImg = api_get_path(WEB_CSS_PATH).'themes/' . $theme . '/images/header-logo-custom.png'; + $customImg = api_get_path(SYS_PUBLIC_PATH).'css/themes/' . $theme . '/images/header-logo-custom.png'; // Search for classic logo if (file_exists($customImg)) {