1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 20:57:26 +02:00

Bugtracker #3967 - absolute ref should have been relative

This commit is contained in:
e107steved
2007-06-04 19:24:08 +00:00
parent f70f0c6d16
commit c42c8e19f2

View File

@@ -5,7 +5,7 @@ if (isset($file) && $file && is_readable($file))
$logo = $file; $logo = $file;
$path = $file; $path = $file;
} }
else if (is_readable(THEME_ABS."images/e_logo.png")) else if (is_readable(THEME."images/e_logo.png"))
{ {
$logo = THEME_ABS."images/e_logo.png"; $logo = THEME_ABS."images/e_logo.png";
$path = THEME_ABS."images/e_logo.png"; $path = THEME_ABS."images/e_logo.png";