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

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.