summaryrefslogtreecommitdiff
path: root/framework/DataAccess
diff options
context:
space:
mode:
authorwei <>2006-07-14 06:46:31 +0000
committerwei <>2006-07-14 06:46:31 +0000
commitc004bbdf4f0e824e5ccbaef8f98ca4a3d44d3b49 (patch)
tree9bbf7122021251617c4fba1163eaa5ee222c57d7 /framework/DataAccess
parent61bb16ee2e5f0a66234e1575242169a10fde47b5 (diff)
Changed SQLMap manual into a prado app.
Diffstat (limited to 'framework/DataAccess')
-rw-r--r--framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php b/framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php
index 114bd024..00f55e06 100644
--- a/framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php
+++ b/framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php
@@ -21,13 +21,13 @@ class TSqlMapConditionalTag extends TComponent
(
'isNull', 'isNotNull',
'isEmpty', 'isNotEmpty'
- )
+ );
public static $ParameterChecks = array
(
'isPropertyAvailable', 'isPropertyNotAvailable',
'isParameterPresent', 'isParameterNotPresent'
- )
+ );
private $_tagName;
private $_prepend='';
@@ -67,7 +67,7 @@ class TSqlMapConditionalTag extends TComponent
return $this->evaluateUnary($context, $value);
else if(in_array($this->getTagName(), self::$ConditionalChecks))
{
- $comparee = $this->getComparisonValue($parameter)
+ $comparee = $this->getComparisonValue($parameter);
return $this->evaluateConditional($context, $value, $comparee);
}
else