diff options
author | Mike Cochrane <mikec@mikenz.geek.nz> | 2008-07-10 01:02:02 -0400 |
---|---|---|
committer | Mike Cochrane <mikec@mikenz.geek.nz> | 2008-07-10 01:02:02 -0400 |
commit | da19d126204c633929aaddf5f567b7af7191eba4 (patch) | |
tree | baf384dae107ef5f322748889f8e6e1fb36f3ae4 | |
parent | 98cf96b3e4f642158a13d12d248170367332cce9 (diff) |
Bracket in correct place
darcs-hash:20080710050202-533db-31739e6dc9d57058df99c8e6592249563f484179.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 1d661fb4e..fe171f306 100644 --- a/lib/util.php +++ b/lib/util.php @@ -893,7 +893,7 @@ function common_save_replies($notice) { if (!$id) { $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError'); common_log(LOG_ERROR, 'DB error inserting reply: ' . $last_error->message); - common_server_error(_('DB error inserting reply: %s', $last_error->message)); + common_server_error(_('DB error inserting reply: %s'), $last_error->message); return; } } |