I’m having the same problem... when it’s time for a document to be unpublished, the whole site comes down with a parse error instead :’(
I tried to solve this by following Zenmaster’s advice in the bugtracker, but I guess I did something wrong, because it didn’t work. I changed this line in save_content.processor.php
VALUES('".$introtext."','".$content."', '".$pagetitle."', '".$longtitle."', '".$type."', '".$description."', '".$alias."', '".$isfolder."', '".$richtext."', '".$published."', '".$parent."', '".$template."', '".$menuindex."', '".$searchable."', '".$cacheable."', '".$modx->getLoginUserID()."', ".time().", ".$publishedon.", ".$publishedby.", '".$modx->getLoginUserID()."', ".time().", '$pub_date', '$unpub_date', '$contentType', '$contentdispo', '$donthit', '$menutitle', '$hidemenu')"; into this:
VALUES('".$introtext."','".$content."', '".$pagetitle."', '".$longtitle."', '".$type."', '".$description."', '".$alias."', '".$isfolder."', '".$richtext."', '".$published."', '".$parent."', '".$template."', '".$menuindex."', '".$searchable."', '".$cacheable."', '".$modx->getLoginUserID()."', ".time().", '".$modx->getLoginUserID()."', ".time().", ".$publishedon.", ".$publishedby.", '$pub_date', '$unpub_date', '$contentType', '$contentdispo', '$donthit', '$menutitle', '$hidemenu')";
Is that right? Or should I change something else as well? Any help would be appreciated...