PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.8
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
← All changes | inc/TemplateHooks/Course/AdminEditSettingTemplate.php +2 -2 4.4.14.4.8 View file →
@@ -89,9 +89,9 @@
89 89 );
90 90
91 91 if ( isset( $tab['content'] ) ) {
92 92 ob_start();
93 - do_action( 'learnpress/course-settings/before-' . $key );
93 + do_action( 'learnpress/course-settings/before-' . $key, $post_id );
94 94
95 95 foreach ( $tab['content'] as $meta_key => $object ) {
96 96 if ( is_a( $object, LP_Meta_Box_Field::class ) ) {
97 97 $object->id = $meta_key;
@@ -101,9 +101,9 @@
101 101 }
102 102 }
103 103 }
104 104
105 - do_action( 'learnpress/course-settings/after-' . $key );
105 + do_action( 'learnpress/course-settings/after-' . $key, $post_id );
106 106 $panel_html = ob_get_clean();
107 107
108 108 $panels .= sprintf(
109 109 '<div id="%s" class="lp-meta-box-course-panels">%s</div>',