PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.2.07
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.2.07
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/FrmListHelper.php +2 -9 6.5.35.2.07 View file →
@@ -408,9 +408,9 @@
408 408 if ( isset( $this->_actions['bulk_delete'] ) ) {
409 409 $verify = $this->confirm_bulk_delete();
410 410
411 411 if ( $verify ) {
412 - echo "<a id='confirm-bulk-delete-" . esc_attr( $which ) . "' class='frm-hidden' href='confirm-bulk-delete' data-loaded-from='" . esc_attr( $this->loaded_from() ) . "' data-frmverify='" . esc_attr( $verify ) . "' data-frmverify-btn='frm-button-red'></a>";
412 + echo "<a id='confirm-bulk-delete-" . esc_attr( $which ) . "' class='frm-hidden' href='confirm-bulk-delete' data-frmcaution='" . esc_html__( 'Heads up', 'formidable' ) . "' data-frmverify='" . esc_attr( $verify ) . "'></a>";
413 413 }
414 414 }
415 415
416 416 submit_button( __( 'Apply', 'formidable' ), 'action', '', false, array( 'id' => "doaction$two" ) );
@@ -943,9 +943,9 @@
943 943 } elseif ( in_array( $column_key, array( 'posts', 'comments', 'links' ) ) ) {
944 944 $class[] = 'num';
945 945 }
946 946
947 - if ( $column_key === $primary || $column_key === 'name' ) {
947 + if ( $column_key === $primary ) {
948 948 $class[] = 'column-primary';
949 949 }
950 950
951 951 if ( isset( $sortable[ $column_key ] ) ) {
@@ -1228,13 +1228,6 @@
1228 1228 ),
1229 1229 );
1230 1230
1231 1231 printf( "<script type='text/javascript'>list_args = %s;</script>\n", wp_json_encode( $args ) );
1232 - }
1233 -
1234 - /**
1235 - * @return string
1236 - */
1237 - protected function loaded_from() {
1238 - return '';
1239 1232 }
1240 1233 }