From 5e40772b42948e547ecf55e2d8c91b05e3efc7d1 Mon Sep 17 00:00:00 2001
From: ehpersonal38 <103586016+ehpersonal38@users.noreply.github.com>
Date: Mon, 6 Mar 2023 18:15:00 -0500
Subject: [PATCH] More colorizing
---
homepage/views.php | 3 +++
1 file changed, 3 insertions(+)
diff --git a/homepage/views.php b/homepage/views.php
index 1bbd688..d03c80d 100644
--- a/homepage/views.php
+++ b/homepage/views.php
@@ -308,6 +308,9 @@ if(isset($_GET['view'])){
$results = str_replace("active (running)", "active (running)",$results);
$results = str_replace("Your branch is up to date", "Your branch is up to date",$results);
+ $results = str_replace("(+)", "(+)",$results);
+ $results = str_replace("(-)", "(-)",$results);
+
// split the input string into lines
$lines = explode("\n", $results);