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

SVN:trunk[1829]
This commit is contained in:
Denis Flaven
2012-01-31 15:08:48 +00:00
parent 3a5f73fe65
commit 429cd73e99

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);
}
}