change made to match time data types.

This commit is contained in:
naomiaro 2010-11-04 17:49:27 -04:00
parent 0c74dc5a43
commit 842bda3e98
1 changed files with 2 additions and 2 deletions

View File

@ -1160,7 +1160,7 @@ class BasicStor {
}
else if ($key === "dcterms:extent"){
$plSelect .= "length, ";
$fileSelect .= "text(".$val.") AS ".$val.", ";
$fileSelect .= "length, ";
}
else if ($key === "dc:description"){
$plSelect .= "text(description) AS ".$val.", ";
@ -1186,7 +1186,7 @@ class BasicStor {
$sql .= " ORDER BY ".join(",", $orderBySql);
}
//$_SESSION["br"] = $sql;
$_SESSION["debugsql"] = $sql;
$res = $CC_DBC->getAll($sql);
if (PEAR::isError($res)) {