Forums
(@dominik)
16 years, 3 months ago
There is. Replace this line
$this->options = unserialize(get_option("domainTheme_options"));
with
$options = get_option("domainTheme_options"); if(!is_array($options)){ $this->options = unserialize($options); } else { $this->options = array(); }
19 years, 5 months ago
At the moment the easiest way seems to be manually setting the post slug, but I guess that’s not much help in a multi-user environment.
19 years, 7 months ago
I just tried and it works fine with 1.5. Well, almost fine, as it doesn’t quite post into the right category but uses the default one.
21 years, 1 month ago
Hey, thanks, that’s almost the answer to the question I had before.. I’ll try that one.. ??