diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-02-11 19:21:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-02-11 19:21:14 +0000 |
commit | f137b26979754e3e94bec73ea947cd87d08594a2 (patch) | |
tree | 7d7f2d5eb2646d61a57e1fb04f835d92823ed0d7 /modules/forum/forum.module | |
parent | d795565c32530d6af7e895ca769423eb230b73bb (diff) | |
download | brdo-f137b26979754e3e94bec73ea947cd87d08594a2.tar.gz brdo-f137b26979754e3e94bec73ea947cd87d08594a2.tar.bz2 |
- Patch 4902 by Goba:
+ only adds an optional parameter to url() and l(), so individual links
can be set to be absolute
+ modifies drupal_goto() to accept the parameters of url() without the
$absolute parameter, so cleaner invocations can be used
+ rework of some code in node_feed, making it much better to look at
(the current code uses foreach with an immediate brake to get the first
key of the associative array, geeeeez)
+ added xml:base to the rss tag generated by node_feed()
+ set all user mail URLs to be absolute
+ fix a small fragmented URL in user.module
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index a4ea08380..7437346c0 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -402,7 +402,7 @@ function forum_page() { if (arg(2) == 'new') { if ($nid = _forum_new($tid)) { - drupal_goto(url("node/view/$nid")); + drupal_goto("node/view/$nid"); } } |