We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c3957 commit 0b0dd4eCopy full SHA for 0b0dd4e
1 file changed
releases/index.php
@@ -6,8 +6,11 @@
6
include_once __DIR__ . '/../include/prepend.inc';
7
include_once __DIR__ . "/../include/branches.inc";
8
9
+$RELEASES = Branches::getReleaseData();
10
+$OLDRELEASES = Branches::getOldReleaseData();
11
+
12
if (isset($_GET["serialize"]) || isset($_GET["json"])) {
- $RELEASES = $RELEASES + $OLDRELEASES;
13
+ $RELEASES = Branches::getReleaseData() + Branches::getOldReleaseData();
14
15
$machineReadable = [];
16
0 commit comments