| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2.5 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 1 | public function saveResponseMetabox($postId) |
|
| 27 | { |
||
| 28 | 1 | if (!wp_verify_nonce(glsr(Helper::class)->filterInput('_nonce-response'), 'response')) { |
|
| 29 | 1 | return; |
|
| 30 | } |
||
| 31 | $response = strval(glsr(Helper::class)->filterInput('response')); |
||
| 32 | update_post_meta($postId, 'response', trim(wp_kses($response, [ |
||
| 33 | 'a' => ['href' => [], 'title' => []], |
||
| 34 | 'em' => [], |
||
| 35 | 'strong' => [], |
||
| 36 | ]))); |
||
| 39 |