From a9b3b28d001941921aa70d37fdc87c758a163a44 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Fri, 05 Jun 2026 16:47:03 +0000
Subject: [PATCH] =Some hefty changes to FeedBlock. Transitioning to loading first page in php to save on extra requests. Got a bit to do yet, but I have to work on Northeh for a bit here.

---
 inc/registrar/fields/RepeaterField.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/inc/registrar/fields/RepeaterField.php b/inc/registrar/fields/RepeaterField.php
index 601634a..5168712 100644
--- a/inc/registrar/fields/RepeaterField.php
+++ b/inc/registrar/fields/RepeaterField.php
@@ -11,11 +11,11 @@
 	protected string $add_label = 'Add Row';
 	protected string $row_label = 'New Item';
 
-	public function setAdd_label(string $label):void
+	public function setAddLabel(string $label):void
 	{
 		$this->add_label = $label;
 	}
-	public function getAdd_label():string
+	public function getAddLabel():string
 	{
 		return $this->add_label;
 	}
@@ -33,7 +33,7 @@
 		}
 		return true;
 	}
-	public function setRow_label(string $label):void
+	public function setRowLabel(string $label):void
 	{
 		if (str_contains($label, '{{')) {
 			if (!$this->checkFieldVariables($label)) {
@@ -43,7 +43,7 @@
 
 		$this->row_label = $label;
 	}
-	public function getRow_label():string
+	public function getRowLabel():string
 	{
 		return $this->row_label;
 	}

--
Gitblit v1.10.0