|
@@ -87,20 +87,20 @@ |
|
|
block discarded – undo |
|
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
|
// And allow the next major release after this one |
|
97
|
97
|
// TODO - Remove this once there is a 4.0 tag |
|
98
|
98
|
$nextMajor = $explodedVersion[0] + 1; |
|
99
|
|
- $versions[] = $nextMajor . '.0.0'; |
|
|
99
|
+ $versions[] = $nextMajor.'.0.0'; |
|
100
|
100
|
} |
|
101
|
101
|
|
|
102
|
102
|
// Store the version data now |
|
103
|
|
- $path = APPROOT . '/versions/joomla.json'; |
|
|
103
|
+ $path = APPROOT.'/versions/joomla.json'; |
|
104
|
104
|
|
|
105
|
105
|
if (file_put_contents($path, json_encode($versions)) === false) |
|
106
|
106
|
{ |
Please login to merge, or discard this patch.