@@ -87,15 +87,15 @@ |
||
| 87 | 87 | |
| 88 | 88 | // Allow the next patch release after this one |
| 89 | 89 | $nextPatch = $explodedVersion[2] + 1; |
| 90 | - $versions[] = $explodedVersion[0] . '.' . $explodedVersion[1] . '.' . $nextPatch; |
|
| 90 | + $versions[] = $explodedVersion[0].'.'.$explodedVersion[1].'.'.$nextPatch; |
|
| 91 | 91 | |
| 92 | 92 | // And allow the next minor release after this one |
| 93 | 93 | $nextMinor = $explodedVersion[1] + 1; |
| 94 | - $versions[] = $explodedVersion[0] . '.' . $nextMinor . '.0'; |
|
| 94 | + $versions[] = $explodedVersion[0].'.'.$nextMinor.'.0'; |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | // Store the version data now |
| 98 | - $path = APPROOT . '/versions/joomla.json'; |
|
| 98 | + $path = APPROOT.'/versions/joomla.json'; |
|
| 99 | 99 | |
| 100 | 100 | if (file_put_contents($path, json_encode($versions)) === false) |
| 101 | 101 | { |
@@ -101,17 +101,17 @@ |
||
| 101 | 101 | $explodedVersion = explode('.', $version); |
| 102 | 102 | |
| 103 | 103 | $nextPatch = $explodedVersion[2] + 1; |
| 104 | - $versions[] = $explodedVersion[0] . '.' . $explodedVersion[1] . '.' . $nextPatch; |
|
| 104 | + $versions[] = $explodedVersion[0].'.'.$explodedVersion[1].'.'.$nextPatch; |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | // Use $branch from the previous loop to allow the next minor version (PHP's master branch) |
| 108 | 108 | $explodedVersion = explode('.', $branch); |
| 109 | 109 | |
| 110 | 110 | $nextMinor = $explodedVersion[1] + 1; |
| 111 | - $versions[] = $explodedVersion[0] . '.' . $nextMinor . '.0'; |
|
| 111 | + $versions[] = $explodedVersion[0].'.'.$nextMinor.'.0'; |
|
| 112 | 112 | |
| 113 | 113 | // Store the version data now |
| 114 | - $path = APPROOT . '/versions/php.json'; |
|
| 114 | + $path = APPROOT.'/versions/php.json'; |
|
| 115 | 115 | |
| 116 | 116 | if (file_put_contents($path, json_encode($versions)) === false) |
| 117 | 117 | { |