Closed (fixed)
Project:
Tournament Bracket
Version:
5.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Jun 2010 at 19:02 UTC
Updated:
12 Jun 2010 at 15:01 UTC
if ($node->sponsorlogopath) {
$abs = preg_match("/^https?:\/\//", $node->sponsorlogopath);
if ($abs) {
$imgurl = $node->logopath; // this line (line 520)
}
else {
$imgurl = file_create_url($node->logopath);
}
should be
if ($node->sponsorlogopath) {
$abs = preg_match("/^https?:\/\//", $node->sponsorlogopath);
if ($abs) {
$imgurl = $node->logopath; // this line (line 520)
}
else {
$imgurl = file_create_url($node->sponsorlogopath);
}
Comments
Comment #1
hoppurr commenteddelete th is one, it's wrong
Comment #2
jimbullington commented