Re: bug in NWC2ClipItem?
Reply #3 –
Hi Rick - Sorry, didn't see your post until just now - The null trick will indeed work great, and will clean up my workaround a bit, becoming:
class NWC2ClipItemWithWorkaround extends NWC2ClipItem {
function ReconstructClipText() {
foreach ($this->Opts as $k => &$v)
if ($v === "")
if (NWC2ClassifyOptTag($this->ObjType, $k) == NWC2OPT_TEXT)
$v = null;
return parent::ReconstructClipText();
}
}
Thanks for the tip!