Closed (fixed)
Project:
Logo Tool
Version:
6.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
26 Jul 2009 at 11:58 UTC
Updated:
9 Aug 2009 at 12:00 UTC
When assigning logos to specific nodes the Specified logos display mode wouldn't work. Logotool only displayed the default logo.
Apparently we found a quick fix to the problem in line 285 in logotool.module. There we changed a single number. After that change Logo tool Specified logos display worked like a charm.
line 285:
before:
preg_match($regexp, substr($_SERVER['REQUEST_URI'], 1), $match);
after:
preg_match($regexp, substr($_SERVER['REQUEST_URI'], 4), $match);
Comments