jdarwood007

jdarwood007 commited on 2023-10-15 08:20:53
Showing 1 changed files, with 4 additions and 4 deletions.

... ...
@@ -218,14 +218,14 @@ class SFSA
218 218
 	 */
219 219
 	private function setupSFSConfiguration(bool $return_config = false): array
220 220
 	{
221
-		$config_vars = $this->getConfiguraiton();
221
+		$config_vars = $this->getConfiguration();
222 222
 
223 223
 		if ($return_config)
224 224
 			return $config_vars;
225 225
 
226 226
 		// Saving?
227 227
 		if (isset($_GET['save']))
228
-			$this->saveConfiguraiton($config_vars);
228
+			$this->saveConfiguration($config_vars);
229 229
 
230 230
 		$this->context['post_url'] = $this->adminPageURL . ';save';
231 231
 		prepareDBSettingContext($config_vars);
... ...
@@ -244,7 +244,7 @@ class SFSA
244 244
 	 * @since 1.5.0
245 245
 	 * @return void No return is generated
246 246
 	 */
247
-	private function getConfiguraiton(): array
247
+	private function getConfiguration(): array
248 248
 	{
249 249
 		return [
250 250
 				['title', 'sfsgentitle', 'label' => $this->SFSclass->txt('sfs_general_title')],
... ...
@@ -312,7 +312,7 @@ class SFSA
312 312
 	 * @since 1.5.0
313 313
 	 * @return void No return is generated
314 314
 	 */
315
-	private function saveConfiguraiton(array $config_vars): void
315
+	private function saveConfiguration(array $config_vars): void
316 316
 	{
317 317
 		// Turn the defaults off.
318 318
 		$this->SFSclass->unloadDefaults();
319 319