@@ -67,10 +67,10 @@ discard block |
||
| 67 | 67 | $settingsJson = $row['settings']; |
| 68 | 68 | $settings = Json::decode($settingsJson); |
| 69 | 69 | |
| 70 | - if($settings) { |
|
| 70 | + if ($settings) { |
|
| 71 | 71 | $forceConnect = $settings['forceConnect']; |
| 72 | 72 | |
| 73 | - if(isset($settings['token'])) { |
|
| 73 | + if (isset($settings['token'])) { |
|
| 74 | 74 | $token = $settings['token']; |
| 75 | 75 | } |
| 76 | 76 | } |
@@ -85,10 +85,10 @@ discard block |
||
| 85 | 85 | |
| 86 | 86 | // Get rid of the old plugin settings |
| 87 | 87 | echo ' > remove old plugin settings ...'; |
| 88 | - if($settings) { |
|
| 88 | + if ($settings) { |
|
| 89 | 89 | unset($settings['forceConnect']); |
| 90 | 90 | |
| 91 | - if(isset($settings['token'])) { |
|
| 91 | + if (isset($settings['token'])) { |
|
| 92 | 92 | unset($settings['token']); |
| 93 | 93 | } |
| 94 | 94 | |