From fa2581edcfa52c847db93a9421de5216fb0072f6 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 1 Oct 2003 05:18:03 +0000 Subject: - Modifies path.module to get rid of pgsql reserved word. Patch by Adrian. - Updates database.pgsql and database.mysql to work with current cvs. Patch by Adrian. - Updates update.php to be able to update postgres from 4.2 to current. Patch by Adrian. - Small fixes by me. --- includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/common.inc') diff --git a/includes/common.inc b/includes/common.inc index a1ad701aa..475c72c2b 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -34,7 +34,7 @@ function get_url_map() { if (empty($map)) { $result = db_query("SELECT * FROM {path}"); while ($data = db_fetch_object($result)) { - $map[$data->new] = $data->old; + $map[$data->dst] = $data->src; } } -- cgit v1.2.3