typo in objstring

darcs-hash:20080622142906-34904-0699374fa0a88a1e4c004deb2a2f96b775fb98e5.gz
This commit is contained in:
Evan Prodromou 2008-06-22 10:29:06 -04:00
parent 313999fc7d
commit 1fcdecbd2b
1 changed files with 1 additions and 1 deletions

View File

@ -777,7 +777,7 @@ function common_log_objstring(&$object) {
foreach ($arr as $k => $v) {
$fields[] = "$k='$v'";
}
$ojbstring = $object->tableName() . '[' . implode(',', $fields) . ']';
$objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
return $objstring;
}