Skip to content
Snippets Groups Projects
Commit 62bf762c authored by hahn's avatar hahn
Browse files

ci server - valuestore: fix dbcreate

parent 4d04fe56
No related branches found
No related tags found
No related merge requests found
......@@ -116,14 +116,14 @@ 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>';
$sTable.='<tr onclick="location.href=\''.$sUrl.'\'">';
// $sTable.='<tr>';
foreach ($aRow as $sKey=>$sValue){
// $sTable.='<td class="'.$sKey.'"><a href="'.$sUrl.'">'.$sValue.'</a></td>';
$sTable.='<td class="'.$sKey.'">'.htmlentities($sValue).'</td>';
}
$sTable.='<td>'
. '<button onclick="location.href=\''.$sItemUrl.'&action=get\'">View</button>'
// . '<button onclick="location.href=\''.$sItemUrl.'&action=get\'">View</button>'
. '<form method="POST" action="'.$sItemUrl.'">'
. '<input type="hidden" name="action" value="delete">'
. '<button>Delete</button>'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment