Skip to content
Snippets Groups Projects
Commit b0ea30ed authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Fixed missing translations and missing lm()'s (including the one Marco fixed).

parent 420ac9f4
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ function archive_display($original = 0) {
}
else {
// due to text-decoration we use drupal_url() instead of lm()
$output .= " <td align=\"center\"><small><a href=\"". drupal_url(array("mod" => "archive", "date" => $date), "module") ." \" style=\"text-decoration: none;\">$nday</a></small></td>\n";
$output .= " <td align=\"center\"><small>". lm($nday, array("mod" => "archive", "date" => $date), "", array("style" => "text-decoration: none;")) ."</small></td>\n";
}
// Start every week on a new line:
......
......@@ -72,7 +72,7 @@ function archive_display($original = 0) {
}
else {
// due to text-decoration we use drupal_url() instead of lm()
$output .= " <td align=\"center\"><small><a href=\"". drupal_url(array("mod" => "archive", "date" => $date), "module") ." \" style=\"text-decoration: none;\">$nday</a></small></td>\n";
$output .= " <td align=\"center\"><small>". lm($nday, array("mod" => "archive", "date" => $date), "", array("style" => "text-decoration: none;")) ."</small></td>\n";
}
// Start every week on a new line:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment