$actions['edit']='<a href="'.get_edit_post_link($post->ID,true).'" title="'.esc_attr__('Edit this item').'">'.__('Edit').'</a>';
$actions['inline hide-if-no-js']='<a href="#" class="editinline" title="'.esc_attr__('Edit this item inline').'">'.__('Quick Edit').'</a>';
}
if(current_user_can('delete_post',$post->ID)){
if('trash'==$post->post_status)
$actions['untrash']="<a title='".esc_attr__('Restore this item from the Trash')."' href='".wp_nonce_url(admin_url(sprintf($post_type_object->_edit_link.'&action=untrash',$post->ID)),'untrash-post_'.$post->ID)."'>".__('Restore')."</a>";
elseif(EMPTY_TRASH_DAYS)
$actions['trash']="<a class='submitdelete' title='".esc_attr__('Move this item to the Trash')."' href='".get_delete_post_link($post->ID)."'>".__('Trash')."</a>";