Skip to content

Commit 56eeedf

Browse files
committed
Fixed case of variable name.
1 parent 5d2f798 commit 56eeedf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ToolkitApi/Odbcsupp.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ public function execXMLStoredProcedure($conn, $stmt, $bindArray)
172172
*/
173173
public function executeQuery($conn, $stmt)
174174
{
175+
$txt = array();
175176
$crsr = odbc_exec($conn, $stmt);
176177

177178
if (is_resource($crsr)) {
@@ -182,12 +183,12 @@ public function executeQuery($conn, $stmt)
182183
break;
183184
}
184185

185-
$Txt[]= $row;
186+
$txt[]= $row;
186187
}
187188
} else {
188189
$this->setError($conn);
189190
}
190191

191-
return $Txt;
192+
return $txt;
192193
}
193194
}

0 commit comments

Comments
 (0)