diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 10:29:06 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 10:29:06 -0400 |
commit | 1fcdecbd2b527ad63a322ee87fa5f83b508307b9 (patch) | |
tree | 56f427cc7e48cdee5c3675a718c899eccb801750 | |
parent | 313999fc7d374781ed76c158463d5e2ed82763f6 (diff) |
typo in objstring
darcs-hash:20080622142906-34904-0699374fa0a88a1e4c004deb2a2f96b775fb98e5.gz
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 2064480cb..833695ba8 100644 --- a/lib/util.php +++ b/lib/util.php @@ -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; } |