diff options
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; } } |