Changeset 2818249
- Timestamp:
- 11/15/2022 12:22:28 PM (3 years ago)
- Location:
- wp-poll/trunk
- Files:
-
- 2 edited
-
assets/front/css/style.css (modified) (1 diff)
-
includes/classes/class-hooks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-poll/trunk/assets/front/css/style.css
r2818062 r2818249 21 21 } 22 22 23 table, td, th { 24 border: 1px solid rgba(0, 0, 0, .1) 25 } 26 27 table { 28 border-collapse: separate; 29 border-spacing: 0; 30 border-width: 1px 0 0 1px; 31 margin: 0 0 1.5em; 32 width: 100% 33 } 34 35 th { 36 font-weight: 700 37 } 38 39 td, th { 40 padding: 8px; 41 text-align: left; 42 border-width: 0 1px 1px 0 23 .poll-single.rendered-results { 24 pointer-events: none; 43 25 } 44 26 -
wp-poll/trunk/includes/classes/class-hooks.php
r2804798 r2818249 339 339 $checked_data = isset( $checked_data[0] ) ? $checked_data[0] : ''; 340 340 341 if ( empty( $poll_id ) || empty( $checked_data )) {341 if ( empty( $poll_id ) ) { 342 342 wp_send_json_error( esc_html__( 'Invalid data found !', 'wp-poll' ) ); 343 343 }
Note: See TracChangeset
for help on using the changeset viewer.