diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-07-04 08:59:05 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-07-04 08:59:05 +0000 |
commit | 59aa2ae8e8a7e29e0029941b28bce5b7ba31ae94 (patch) | |
tree | 53b2f31898c20a168d742111ae210aa19393dbbd /modules/blog | |
parent | c21db64ae8f965f28342b6cf528d180a057c6412 (diff) | |
download | brdo-59aa2ae8e8a7e29e0029941b28bce5b7ba31ae94.tar.gz brdo-59aa2ae8e8a7e29e0029941b28bce5b7ba31ae94.tar.bz2 |
#71925 by Steven, remove # prefix from link array keys.
Diffstat (limited to 'modules/blog')
-rw-r--r-- | modules/blog/blog.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 01c5fa557..13da3d34f 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -250,9 +250,9 @@ function blog_link($type, $node = 0, $main = 0) { if ($type == 'node' && $node->type == 'blog') { if (arg(0) != 'blog' || arg(1) != $node->uid) { $links['blog_usernames_blog'] = array( - '#title' => t("%username's blog", array('%username' => $node->name)), - '#href' => "blog/$node->uid", - '#attributes' => array('title' => t("Read %username's latest blog entries.", array('%username' => $node->name))) + 'title' => t("%username's blog", array('%username' => $node->name)), + 'href' => "blog/$node->uid", + 'attributes' => array('title' => t("Read %username's latest blog entries.", array('%username' => $node->name))) ); } } |