PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 3.06.06
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v3.06.06
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/helpers/FrmEmailHelper.php +1 -6 6.4.13.06.06 View file →
@@ -1,8 +1,5 @@
1 1 <?php
2 -if ( ! defined( 'ABSPATH' ) ) {
3 - die( 'You are not allowed to call this page directly.' );
4 -}
5 2
6 3 /**
7 4 * @since 2.03.04
8 5 */
@@ -14,17 +11,15 @@
14 11 *
15 12 * @since 2.03.04
16 13 *
17 14 * @param int $form_id
18 - *
19 15 * @return int
20 16 */
21 17 public static function get_user_id_field_for_form( $form_id ) {
22 18 $where = array(
23 - 'type' => 'user_id',
19 + 'type' => 'user_id',
24 20 'form_id' => $form_id,
25 21 );
26 -
27 22 $user_id_field = FrmDb::get_var( 'frm_fields', $where, 'id' );
28 23
29 24 return (int) $user_id_field;
30 25 }