From f314fbddcce561541f27dae8491052a90987e167 Mon Sep 17 00:00:00 2001 From: Jefersson Nathan Date: Mon, 24 Mar 2025 16:00:28 +0100 Subject: [PATCH] Use PHP_MASTER as the default branch --- build.php | 2 +- list_builds.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.php b/build.php index 711bc91..a11e9e3 100644 --- a/build.php +++ b/build.php @@ -4,7 +4,7 @@ include("reports/reportsfunctions.php"); $branch = $_GET['branch'] ?? ''; -isValidBranch($branch) or $branch = 'PHP_5_6'; +isValidBranch($branch) or $branch = 'PHP_MASTER'; $revision = $_GET['revision'] ?? ''; isValidRevision($revision) or $revision = ''; diff --git a/list_builds.php b/list_builds.php index 8ec5824..d2d3a35 100644 --- a/list_builds.php +++ b/list_builds.php @@ -3,7 +3,7 @@ include("include/functions.php"); include("reports/reportsfunctions.php"); $branch = $_GET['branch'] ?? ''; -isValidBranch($branch) or $branch = 'PHP_5_6'; +isValidBranch($branch) or $branch = 'PHP_MASTER'; $TITLE = "PHP: QA: PFTT: $branch"; $SITE_UPDATE = date("D M d H:i:s Y T", filectime(__FILE__));