Active
Project:
Multiple Domains
Version:
5.x-1.x-dev
Component:
code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Nov 2007 at 21:57 UTC
Updated:
5 Nov 2007 at 21:57 UTC
Hi guys,
I was wondering why there is not functional select box for selecting theme for particular subdomain. I found out, that there is a bug in module at lines 301 and 303.
To enable support for subdomain-dependent skinning just delete code on lines 301 + 303 (or comment them out) like this:
...
298 // Add default theme select.
299 $options = array();
300 foreach (list_themes() as $theme) {
301 // if ($theme->status) { // XL fix
302 $options[$theme->name] = $theme->name;
303 // }
304 }
...
Dont know whether this was an intention (then why there would be a select box..?) or just a bug - but skinning works OK once you disable mentioned lines.
Cheers
lubosdz