diff options
Diffstat (limited to 'modules/story/story.module')
-rw-r--r-- | modules/story/story.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/story/story.module b/modules/story/story.module index 3e064a559..4bacfc0d4 100644 --- a/modules/story/story.module +++ b/modules/story/story.module @@ -57,7 +57,7 @@ function story_save($op, $node) { function story_link($type) { if ($type == "menu.create" && user_access("post content")) { - $links[] = "<a href=\"module.php?mod=node&op=add&type=story\" title=\"". t("Add a new story.") ."\">". t("create story") ."</a>"; + $links[] = lm(t("create story"), array("mod" => "node", "op" => "add", "type" => "story"), t("Add a new story.")); } return $links ? $links : array(); |