- assigned_to: nobody --> richardarcher
In the db_odbc database class I've found a failure in the
function f(). The Original declaration says:
function f($Name) {
if (isset($this->Record[$Name])) {
return $this->Record[strtolower($Name)];
}
return "";
}
This results in the missing ability to return array field
names. (Found during login procedure).
So the corrected version should be (including some kind
of error handling feature...).
function f($Name) {
if (isset($this->Record[strtolower($Name)])) {
return $this->Record[strtolower($Name)];
}
return "unknown field requested";
}
Hope that this helped anybody usind ODBC. It's
certainly kind of hidden.
Your's
Sebastian
sebastian.wiehe@qmarketing.de
www.qmarketing.de