Skip to content
Snippets Groups Projects
Commit 10db5b95 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

Merge branch 'task-1680-fix-surl' into 'master'

Task 1680 fix surl

See merge request !52
parents a8a3a48f b4c4706c
No related branches found
No related tags found
No related merge requests found
......@@ -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";
......
......@@ -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>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment