| @@ -1,6 +1,6 @@ discard block | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -class FrmSettings{ | |
| 3 | +class FrmSettings { | |
| 4 | 4 | public $option_name = 'frm_options'; | 
| 5 | 5 | public $menu; | 
| 6 | 6 | public $mu_menu; | 
| @@ -47,7 +47,8 @@ discard block | ||
| 47 | 47 | } | 
| 48 | 48 | |
| 49 | 49 |  	private function translate_settings( $settings ) { | 
| 50 | -        if ( $settings ) { //workaround for W3 total cache conflict | |
| 50 | +        if ( $settings ) { | |
| 51 | +//workaround for W3 total cache conflict | |
| 51 | 52 | return unserialize(serialize($settings)); | 
| 52 | 53 | } | 
| 53 | 54 | |
| @@ -58,7 +59,8 @@ discard block | ||
| 58 | 59 | } | 
| 59 | 60 | |
| 60 | 61 | // If unserializing didn't work | 
| 61 | -        if ( $settings ) { //workaround for W3 total cache conflict | |
| 62 | +        if ( $settings ) { | |
| 63 | +//workaround for W3 total cache conflict | |
| 62 | 64 | $settings = unserialize(serialize($settings)); | 
| 63 | 65 |          } else { | 
| 64 | 66 | $settings = $this; | 
| @@ -1,6 +1,6 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -class FrmCSVExportHelper{ | |
| 3 | +class FrmCSVExportHelper { | |
| 4 | 4 | protected static $separator = ', '; | 
| 5 | 5 | protected static $column_separator = ','; | 
| 6 | 6 | protected static $line_break = 'return'; | 
| @@ -121,7 +121,7 @@ | ||
| 121 | 121 | * @param array $args | 
| 122 | 122 | * @return boolean $value_is_posted | 
| 123 | 123 | */ | 
| 124 | -	public static function value_is_posted( $field, $args ){ | |
| 124 | +	public static function value_is_posted( $field, $args ) { | |
| 125 | 125 | $value_is_posted = false; | 
| 126 | 126 |  		if ( $_POST ) { | 
| 127 | 127 | $repeating = isset( $args['repeating'] ) && $args['repeating']; |