diff --git a/sites/all/modules/epublish/epublish.module b/sites/all/modules/epublish/epublish.module index b125e57..06c0a79 100644 --- a/sites/all/modules/epublish/epublish.module +++ b/sites/all/modules/epublish/epublish.module @@ -103,10 +103,10 @@ function epublish_help($path, $arg) { "
The epublish module deals with three objects, which can be created or edited using !admin:
". "The Publication edition can have custom URL aliases. To enable the URL aliases, one must enable the 'path' module from the !modules.
", - array('!modules' => l(t("module list"), "admin/build/modules", array(), NULL, NULL, FALSE, TRUE))) . + array('!modules' => l(t("module list"), "admin/build/modules", array('html' => TRUE)))) . t("In addition to displaying postings that have been collected into specific editions of a publication, you can also view a list of the most recent postings in each topic section ". "at \"epublish/headlines/{sid}\" where {sid} is a numeric section ID. \"Topics\" use taxonomy terms to organize content according to the following rules:
\n". @@ -137,7 +137,7 @@ function epublish_help($path, $arg) { "The \"miscellaneous\" topic appears at the bottom of each section. (If, however, you set its \"automatically-included headlines limit\" to zero, no miscellanous headlines will be displayed.)\n") . t("The epublish module creates a sidebar block for each section, as well as an \"epublish\" block that lists all publications. To make blocks visible on your pages, use !blocks.
", - array('!blocks' => l(t("administer » blocks"), "admin/block", array(), NULL, NULL, FALSE, TRUE))) . + array('!blocks' => l(t("administer » blocks"), "admin/block", array('html' => TRUE)))) . t("The epublish module comes with several standard \"layouts\" that make it possible to customize the layout of publication pages. The \"node views,\" \"one- and two-column\" and \"regular\" layouts are different ". "page layouts for displaying nodes from a single edition. The \"simple list of headlines only\" layout is used on pages that list multiple editions of a publication.
\n". @@ -1155,7 +1155,7 @@ function epublish_sections_table() { $header = array(t('sections/topics'), array("data" => t("operations"), "colspan" => 2)); while ($section = db_fetch_object($result)) { $topics = epublish_topic_selection_list($section->sid); - $rows[] = array(l( t($section->title) , "headlines/$section->sid", array(), NULL, NULL, FALSE, TRUE), + $rows[] = array(l( t($section->title) , "headlines/$section->sid", array('html' => TRUE)), l(t("edit"), "admin/epublish/edit/section/$section->sid"), l(t("add topic"), "admin/epublish/add/topic/$section->sid"), ); @@ -1840,7 +1840,7 @@ function epublish_pub_list() { $header = array(t('publication/editions'), array("data" => t("operations"), "colspan" => 2)); while ($publication = db_fetch_object($publications)) { - $rows[] = array(l(t($publication->name), "epublish/$publication->pid", array(), NULL, NULL, FALSE, TRUE), l(t("edit publication"), "admin/epublish/edit/publication/$publication->pid"), + $rows[] = array(l(t($publication->name), "epublish/$publication->pid", array('html' => TRUE)), l(t("edit publication"), "admin/epublish/edit/publication/$publication->pid"), l(t("add edition"), "admin/epublish/add/edition/$publication->pid")); $result = db_query("SELECT * FROM {epublish_edition} WHERE pid='%d' ORDER BY volume $order, number $order, pubdate $order, eid $order", $publication->pid); $previous_volume = -1;