From b4c4706c4e3ea817053e54a9f2e45e48c85cbdbc Mon Sep 17 00:00:00 2001
From: hahn <axel.hahn@iml.unibe.ch>
Date: Thu, 30 Nov 2017 15:51:13 +0100
Subject: [PATCH] task#1680 - fix warning because of missing var fix type in
 config check

---
 public_html/deployment/inc_functions.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/public_html/deployment/inc_functions.php b/public_html/deployment/inc_functions.php
index 17d699b5..53cb539e 100644
--- a/public_html/deployment/inc_functions.php
+++ b/public_html/deployment/inc_functions.php
@@ -33,7 +33,7 @@ $aParams = array();
             'archiveDir',
             ) as $sKey){
             if (!is_dir($aConfig[$sKey])){
-                $aErrors[]="* \$aConfig['$sKey'] pints to a non existing directory (".$aConfig[$sKey].").\n";
+                $aErrors[]="* \$aConfig['$sKey'] points to a non existing directory (".$aConfig[$sKey].").\n";
             } else {
                 if (!is_writable($aConfig[$sKey])){
                     $aErrors[]="* \$aConfig['$sKey'] = ".$aConfig[$sKey]." is NOT writable.\n";
-- 
GitLab