Code Duplication    Length = 3-3 lines in 3 locations

classes/fields/html.php 1 location

@@ 129-131 (lines=3) @@
126
			$value = wptexturize( $value );
127
		}
128
129
		if ( 1 === (int) pods_v( static::$type . '_convert_chars', $options, 1 ) ) {
130
			$value = convert_chars( $value );
131
		}
132
133
		if ( 1 === (int) pods_v( static::$type . '_wpautop', $options, 1 ) ) {
134
			$value = wpautop( $value );

classes/fields/paragraph.php 1 location

@@ 180-182 (lines=3) @@
177
			$value = wptexturize( $value );
178
		}
179
180
		if ( 1 === (int) pods_v( static::$type . '_convert_chars', $options, 1 ) ) {
181
			$value = convert_chars( $value );
182
		}
183
184
		if ( 1 === (int) pods_v( static::$type . '_wpautop', $options, 1 ) ) {
185
			$value = wpautop( $value );

classes/fields/wysiwyg.php 1 location

@@ 190-192 (lines=3) @@
187
			$value = wptexturize( $value );
188
		}
189
190
		if ( 1 === (int) pods_v( static::$type . '_convert_chars', $options, 1 ) ) {
191
			$value = convert_chars( $value );
192
		}
193
194
		if ( 1 === (int) pods_v( static::$type . '_wpautop', $options, 1 ) ) {
195
			$value = wpautop( $value );