diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-01 05:18:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-01 05:18:03 +0000 |
commit | fa2581edcfa52c847db93a9421de5216fb0072f6 (patch) | |
tree | 157fe17cb4af14b4b927ce157c29ab8fd9b894cf /includes/common.inc | |
parent | 392304da5f4a6f86d8ab8b5f91d38a698d1dcc88 (diff) | |
download | brdo-fa2581edcfa52c847db93a9421de5216fb0072f6.tar.gz brdo-fa2581edcfa52c847db93a9421de5216fb0072f6.tar.bz2 |
- 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.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |