@@ -119,15 +119,15 @@ |
||
| 119 | 119 | { |
| 120 | 120 | $scriptContent = ''; |
| 121 | 121 | foreach ($this->variables as $variable) { |
| 122 | - $scriptContent .= $variable->getScriptDeclaration() . "\n"; |
|
| 122 | + $scriptContent .= $variable->getScriptDeclaration()."\n"; |
|
| 123 | 123 | if ($defaultValues) { |
| 124 | - $scriptContent .= $variable->getScriptValueSet() . "\n"; |
|
| 124 | + $scriptContent .= $variable->getScriptValueSet()."\n"; |
|
| 125 | 125 | } |
| 126 | 126 | } |
| 127 | - $scriptContent .= $this->checkVariable->getScriptDeclaration() . "\n"; |
|
| 127 | + $scriptContent .= $this->checkVariable->getScriptDeclaration()."\n"; |
|
| 128 | 128 | if ($defaultValues) { |
| 129 | - $scriptContent .= $this->checkVariable->getScriptValueSet() . "\n"; |
|
| 130 | - $scriptContent .= $this->checkVariable->getVariableName() . '_Old = "";'; |
|
| 129 | + $scriptContent .= $this->checkVariable->getScriptValueSet()."\n"; |
|
| 130 | + $scriptContent .= $this->checkVariable->getVariableName().'_Old = "";'; |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | return $scriptContent; |