diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2006-09-19 05:14:27 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2006-09-19 05:14:27 +0100 |
| commit | 472782e8bff08df698a3c3f87ee3fc9f7e16b06f (patch) | |
| tree | e6bb4a92194ab3046c7850237ac54cae8230606e /db.php | |
| parent | 39ddbaa1c4067ebac770e7ed923dcee12dbfe3ce (diff) | |
optimize catchup selected, add CatchupSelected subop in viewfeed
Diffstat (limited to 'db.php')
| -rw-r--r-- | db.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ function db_query($link, $query, $die_on_error = true) { if (!$result) { $query = htmlspecialchars($query); // just in case if ($die_on_error) { - die("Query <i>$query</i> failed: " . pg_last_error($link)); + die("Query <i>$query</i> failed [$result]: " . pg_last_error($link)); } } return $result; |