PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 4.0.3
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v4.0.3
4.0.3 4.0.2 4.0.1 4.0.0 3.16.6 3.16.5 3.16.4 3.16.3 3.16.2 3.16.1 3.16.0 3.15.9 3.9.9 3.9.5 3.9.6 3.9.7 3.9.8 1.1.7 1.1.8 1.1.9 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 341 releases
← All changes | form-builder/multiple-forms/edit-profile-forms.php +6 -4 4.0.04.0.3 View file →
@@ -77,13 +77,15 @@
77 77 */
78 78 function wppb_remove_epf_view_link( $actions ){
79 79 global $post;
80 80
81 - if ( $post->post_type == 'wppb-epf-cpt' ){
82 - unset( $actions['view'] );
81 + if ( ! empty( $post ) ) {
82 + if ( $post->post_type == 'wppb-epf-cpt' ){
83 + unset( $actions['view'] );
83 84
84 - if ( wppb_get_post_number ( $post->post_type, 'singular_action' ) )
85 - unset( $actions['trash'] );
85 + if ( wppb_get_post_number ( $post->post_type, 'singular_action' ) )
86 + unset( $actions['trash'] );
87 + }
86 88 }
87 89
88 90 return $actions;
89 91 }