diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/book.module | 2 | ||||
-rw-r--r-- | modules/book/book.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/book.module b/modules/book.module index 74737b213..909542a15 100644 --- a/modules/book.module +++ b/modules/book.module @@ -224,7 +224,7 @@ function book_node_link($node = 0) { $output .= status(t("removed the node form the book.")); } - $output .= "<h3>". t("Edit book outline for node <i>") . "$node->title</i></h3>"; + $output .= "<h3>". t("Edit book outline for node <i>%booktitle</i>", array("%booktitle" => $node->title)) ."</h3>"; if ($edit["nid"]) { $page = db_fetch_object(db_query("SELECT * FROM book WHERE nid = %d", $node->nid)); diff --git a/modules/book/book.module b/modules/book/book.module index 74737b213..909542a15 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -224,7 +224,7 @@ function book_node_link($node = 0) { $output .= status(t("removed the node form the book.")); } - $output .= "<h3>". t("Edit book outline for node <i>") . "$node->title</i></h3>"; + $output .= "<h3>". t("Edit book outline for node <i>%booktitle</i>", array("%booktitle" => $node->title)) ."</h3>"; if ($edit["nid"]) { $page = db_fetch_object(db_query("SELECT * FROM book WHERE nid = %d", $node->nid)); |