Index: theme.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/theme.inc,v retrieving revision 1.289 diff -u -r1.289 theme.inc --- theme.inc 7 Apr 2006 10:40:55 -0000 1.289 +++ theme.inc 10 Apr 2006 20:15:44 -0000 @@ -302,7 +302,13 @@ $settings['logo'] = base_path() . dirname($theme_object->filename) .'/logo.png'; } elseif ($settings['logo_path']) { - $settings['logo'] = base_path() . $settings['logo_path']; + $protocol = substr($settings['logo_path'], 0, 4); + if (($protocol == "http") || ($protocol == "ftp")) { + $settings['logo'] = $settings['logo_path']; + } + else { + $settings['logo'] = base_path() . $settings['logo_path']; + } } }