Skip to content

Commit

Permalink
Remove some uses of @ operator.
Browse files Browse the repository at this point in the history
  • Loading branch information
chesio committed Jun 1, 2017
1 parent 3c2d928 commit 4f3700e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/cachify.class.php
Expand Up @@ -1596,8 +1596,8 @@ public static function validate_options( $data ) {
'only_guests' => (int) ( ! empty( $data['only_guests'] )),
'compress_html' => (int) $data['compress_html'],
'cache_expires' => (int) ( isset( $data['cache_expires'] ) ? $data['cache_expires'] : self::$options['cache_expires'] ),
'without_ids' => (string) sanitize_text_field( @$data['without_ids'] ),
'without_agents' => (string) sanitize_text_field( @$data['without_agents'] ),
'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'] ) : '',
'use_apc' => (int) $data['use_apc'],
'reset_on_comment' => (int) ( ! empty( $data['reset_on_comment'] )),
);
Expand Down

0 comments on commit 4f3700e

Please sign in to comment.