Skip to content

Commit

Permalink
Fix regression introduced in pluginkollektiv#105.
Browse files Browse the repository at this point in the history
  • Loading branch information
chesio committed Jul 3, 2017
1 parent 7118206 commit 10ce5cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/cachify.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1611,7 +1611,7 @@ public static function validate_options( $data ) {
'compress_html' => (int) $data['compress_html'],
'cache_expires' => (int) ( isset( $data['cache_expires'] ) ? $data['cache_expires'] : self::$options['cache_expires'] ),
'without_ids' => (string) isset( $data['without_ids'] ) ? sanitize_text_field( $data['without_ids'] ) : '',
'without_agents' => (string) isset( $data['without_ids'] ) ? sanitize_text_field( $data['without_agents'] ) : '',
'without_agents' => (string) isset( $data['without_agents'] ) ? sanitize_text_field( $data['without_agents'] ) : '',
'use_apc' => (int) $data['use_apc'],
'reset_on_comment' => (int) ( ! empty( $data['reset_on_comment'] )),
'sig_detail' => (int) ( ! empty( $data['sig_detail'] )),
Expand Down

0 comments on commit 10ce5cb

Please sign in to comment.