@@ -186,11 +186,13 @@ |
||
186 | 186 | * @return string |
187 | 187 | */ |
188 | 188 | private static function interpret_autowidth_attribute( $autowidth ) { |
189 | - if ( $autowidth == 'default' && get_option( 'podlove_subscribe_button_default_autowidth' ) !== 'on' ) |
|
190 | - return ''; |
|
189 | + if ( $autowidth == 'default' && get_option( 'podlove_subscribe_button_default_autowidth' ) !== 'on' ) { |
|
190 | + return ''; |
|
191 | + } |
|
191 | 192 | |
192 | - if ( $autowidth !== 'default' && $autowidth !== 'on' ) |
|
193 | - return ''; |
|
193 | + if ( $autowidth !== 'default' && $autowidth !== 'on' ) { |
|
194 | + return ''; |
|
195 | + } |
|
194 | 196 | |
195 | 197 | return ' auto'; |
196 | 198 |