diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-02-12 21:37:56 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-02-12 21:37:56 +0000 |
commit | 32989e14dba16192c69cafa6f69138e597311b27 (patch) | |
tree | ef73375fa6643b2322a4b3aa933c6f5fe026b899 /modules/blog.module | |
parent | ebd95351401cfc23633671210bf89a6b4b3a7c0b (diff) | |
download | brdo-32989e14dba16192c69cafa6f69138e597311b27.tar.gz brdo-32989e14dba16192c69cafa6f69138e597311b27.tar.bz2 |
- Fixed blog.module to accept blog/name URLs as well as blog/id
- Changed the RewriteRule in .htaccess.
- Fixed form_select() matching incorrectly.
- Added missing $Id$ to menu.inc
Diffstat (limited to 'modules/blog.module')
-rw-r--r-- | modules/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog.module b/modules/blog.module index f5c2c4112..2c54e3f09 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -149,7 +149,7 @@ function blog_page_user($uid = 0) { global $user, $theme; if ($uid) { - $account = user_load(array("uid" => $uid, "status" => 1)); + $account = user_load(array((is_numeric($uid) ? "uid" : "name") => $uid, "status" => 1)); } else { $account = $user; |