diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-07-10 11:12:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-07-10 11:12:02 +0000 |
commit | 8d38010d8d834872412b7f8d251c2d066de3ce1f (patch) | |
tree | a49a39ac806fa108143d302b54f8cb0dc9a9adaa | |
parent | 6b96a191cd13935c7642d85575c7ed69c2c73bad (diff) | |
download | brdo-8d38010d8d834872412b7f8d251c2d066de3ce1f.tar.gz brdo-8d38010d8d834872412b7f8d251c2d066de3ce1f.tar.bz2 |
- Patch #255150 by dropcube: corrected formatting of links.
-rw-r--r-- | modules/node/node.pages.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.pages.inc b/modules/node/node.pages.inc index 0f94a4ac2..6d9be7d8c 100644 --- a/modules/node/node.pages.inc +++ b/modules/node/node.pages.inc @@ -32,7 +32,7 @@ function theme_node_add_list($content) { if ($content) { $output = '<dl class="node-type-list">'; foreach ($content as $item) { - $output .= '<dt>' . l($item['title'], $item['href'], $item['options']) . '</dt>'; + $output .= '<dt>' . l($item['title'], $item['href'], $item['localized_options']) . '</dt>'; $output .= '<dd>' . filter_xss_admin($item['description']) . '</dd>'; } $output .= '</dl>'; |