From 8688d707ebbac87851b1f60fde63b0dbb6b199a3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 7 Jul 2008 03:44:34 -0400 Subject: better error reporting darcs-hash:20080707074434-84dde-ffc9b2caeef3e9fef9607511b425880986883d72.gz --- lib/util.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 3301c0233..638bd0333 100644 --- a/lib/util.php +++ b/lib/util.php @@ -852,7 +852,9 @@ function common_save_replies($notice) { } $id = $reply->insert(); if (!$id) { - common_log_db_error($reply, 'INSERT', __FILE__); + $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: ' . $last_error->message); return; } } -- cgit v1.2.3-54-g00ecf