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();
}
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.
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.
Hey, thanks, that’s almost the answer to the question I had before.. I’ll try that one.. 🙂