From 3c892f38b2d7d5dd6a453d0f7d31aec90dc4b336 Mon Sep 17 00:00:00 2001 From: hahn <axel.hahn@iml.unibe.ch> Date: Thu, 30 Nov 2017 15:49:39 +0100 Subject: [PATCH] task#1680 - fix warning because of missing var fix type in config check --- public_html/valuestore/browse.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/valuestore/browse.php b/public_html/valuestore/browse.php index 997d685b..a3bf2ce9 100644 --- a/public_html/valuestore/browse.php +++ b/public_html/valuestore/browse.php @@ -116,7 +116,7 @@ if(is_array($aData) && count($aData)){ // echo '<pre>' . print_r($aData, 1); foreach ($aData as $aRow){ $sItemUrl='index.php?project='.$aRow['project'].'&package='.$aRow['package'].'&phase='.$aRow['phase'].'&host='.$aRow['host'].'&variable='.$aRow['variable'].''; - $sTable.='<tr onclick="location.href=\''.$sUrl.'\'">'; + $sTable.='<tr onclick="location.href=\''.$sItemUrl.'\'">'; // $sTable.='<tr>'; foreach ($aRow as $sKey=>$sValue){ // $sTable.='<td class="'.$sKey.'"><a href="'.$sUrl.'">'.$sValue.'</a></td>'; -- GitLab