Blog comment confirmation email sends wrong link with no id
    
        
                
            
                
                    In the blog controller in function _notify:
1. $msg .= "\n".fuel_url('blog/comments/'.$comment->id)."\n\n";
Should probably be:
$msg .= "\n".fuel_url('blog/comments/edit'.$comment->id)."\n\n";
2. The $comment->id is empty, how do I get the comment id that was just created?
[table_name:protected] => fuel_blog_comments
                    [key_field:protected] => id
                    [normalized_save_data:protected] => Array
                        (
                            [id] => 
                            [post_id] => 2
                            [parent_id] => 
                            [author_id] => 
                            [author_name] => Sigi
                            [author_email] => sigi@gmail.com
                            [author_website] => 
                            [author_ip] => 127.0.0.1
                            [is_spam] => no
                            [content] => Here is the comment
                            [published] => no
                            [date_added] => 
                            [last_modified] => CURRENT_TIMESTAMP
                            [title] => 
                            [permalink] => 
                        )                
                             
         
     
 
                 
            
Comments
https://github.com/daylightstudio/FUEL-CMS/commit/25c0cea6373cc85f73aa18102fa6741b9bd11dd0
This is not an issue on 1.0
My_Model is like that now:
// execute on_insert/update hook methods on the Date_record model if exists if (is_object($record) AND is_a($record, 'Data_record')) { //if (!$this->_has_key_field_value($values) AND $this->db->insert_id()) if($no_key) { $record->on_after_insert($values); } else { $record->on_after_update($values); } }