In /components/com_sef/joomsef.php around line 1129, there should be the following code:
if (count($_POST) == 0) {
// Non-SEF redirect
if ((strpos($jSef, 'index.php?') === false) && ($oldUrl != $jSef)) {
// Seems the URL is SEF, let's redirect
$f = $l = '';
if( !headers_sent($f, $l) ) {
$mainframe =& JFactory::getApplication();
$mainframe->redirect($jSef, '', 'message', true);
exit();
} else {
JoomSEF::_headers_sent_error($f, $l, __FILE__, __LINE__);
}
}
}
Just comment it out (or remove it) for now. When you later upgrade to new version, the whole file will be replaced with the fixed code.
Best regards,
ARTIO Support Team