From: Evan Prodromou Date: Sun, 22 Jun 2008 14:29:06 +0000 (-0400) Subject: typo in objstring X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1fcdecbd2b527ad63a322ee87fa5f83b508307b9;p=quix0rs-gnu-social.git typo in objstring darcs-hash:20080622142906-34904-0699374fa0a88a1e4c004deb2a2f96b775fb98e5.gz --- diff --git a/lib/util.php b/lib/util.php index 2064480cb5..833695ba87 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; }