Subject: | Bug with MT 2.6.3 and Net::Blogger 0.8.4 .... |
I was trying to update the title's on some of my blogs using the metaWeblog API and was getting the error
Wrong/unsupported datatype 'struct' specified
Which I tracked down to line 64 in metaWeblog.pm:
$self->_Type(struct=>$args),
a simple change to:
$self->_Type(hash=>$args),
fixed this error right up. I noticed this matched the value in newPost() which works perfectly.