SQL Block with parameters were always displayed as table, whatever their type...

SVN:1.2[1828]
This commit is contained in:
Denis Flaven
2012-01-31 15:04:23 +00:00
parent ee938d674d
commit af710c549f

View File

@@ -182,13 +182,13 @@ class SqlBlock
if (isset($oParamData->type))
{
$sType = $oParamData->type;
$sParamType = $oParamData->type;
}
else
{
$sType = 'context';
$sParamType = 'context';
}
$aParams[$sName] = array('mapping' => $sMapping, 'type' => $sType);
$aParams[$sName] = array('mapping' => $sMapping, 'type' => $sParamType);
}
}