Manual patch instructions:You only need to perform manual patching if you do not want to upload the file attached in the message above.
modules/blog/lib/entry_reply_entry.php lines 53-58 change from:
CODE
//-------------------------------------------------
// Do we have the information needed
//-------------------------------------------------
if (!isset( $this->ipsclass->input['eid'] ) or !intval( $this->ipsclass->input['eid'] ) )
{
$this->ipsclass->Error( array( LEVEL => 1, MSG => 'missing_files') );
}
//-------------------------------------------------
// Load the entry
//-------------------------------------------------
$this->entry = $this->ipsclass->DB->build_and_exec_query( array ( 'select' => '*',
'from' => 'blog_entries',
'where' => "entry_id = {$this->ipsclass->input['eid']}"
) );
TO:
CODE
//-------------------------------------------------
// Do we have the information needed
//-------------------------------------------------
$eid = intval($this->ipsclass->input['eid']);
if ( !$eid )
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'missing_files') );
}
//-------------------------------------------------
// Load the entry
//-------------------------------------------------
$this->entry = $this->ipsclass->DB->build_and_exec_query( array ( 'select' => '*',
'from' => 'blog_entries',
'where' => "entry_id = {$eid}"
) );