- Fixed some link titles that were no longer correct due to the menu changes.
- Made sure that the link titles match the page titles.4.3.x
parent
3d0765c5db
commit
71ebc04a09
|
@ -6,7 +6,7 @@ function tracker_help($section = "admin/help#tracker") {
|
|||
|
||||
switch ($section) {
|
||||
case 'admin/help#tracer':
|
||||
$output = t("<p>The tracker module is a handy module for displaying the most recent posts. By following the <i>view recent posts</i> link in the user block, a user may quickly review all recent postings.</p>");
|
||||
$output = t("<p>The tracker module is a handy module for displaying the most recent posts. By following the <i>recent posts</i> link in the user block, a user may quickly review all recent postings.</p>");
|
||||
break;
|
||||
case 'admin/system/modules#description':
|
||||
$output = t("Enables tracking of recent posts for users.");
|
||||
|
@ -95,7 +95,7 @@ function tracker_user($type, &$edit, &$user) {
|
|||
case "view_private":
|
||||
case "view_public":
|
||||
if (user_access("access content")) {
|
||||
return form_item(t("Recent posts"), l(t("view recent posts"), "tracker/$user->uid"));
|
||||
return form_item(t("Recent posts"), l(t("recent posts"), "tracker/$user->uid"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -104,8 +104,8 @@ function tracker_page() {
|
|||
global $user;
|
||||
|
||||
if (user_access("access content")) {
|
||||
theme("header", t("Recent activity"));
|
||||
theme("box", t("Recent activity"), tracker_posts(arg(1)));
|
||||
theme("header", t("Recent posts"));
|
||||
theme("box", t("Recent posts"), tracker_posts(arg(1)));
|
||||
theme("footer");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ function tracker_help($section = "admin/help#tracker") {
|
|||
|
||||
switch ($section) {
|
||||
case 'admin/help#tracer':
|
||||
$output = t("<p>The tracker module is a handy module for displaying the most recent posts. By following the <i>view recent posts</i> link in the user block, a user may quickly review all recent postings.</p>");
|
||||
$output = t("<p>The tracker module is a handy module for displaying the most recent posts. By following the <i>recent posts</i> link in the user block, a user may quickly review all recent postings.</p>");
|
||||
break;
|
||||
case 'admin/system/modules#description':
|
||||
$output = t("Enables tracking of recent posts for users.");
|
||||
|
@ -95,7 +95,7 @@ function tracker_user($type, &$edit, &$user) {
|
|||
case "view_private":
|
||||
case "view_public":
|
||||
if (user_access("access content")) {
|
||||
return form_item(t("Recent posts"), l(t("view recent posts"), "tracker/$user->uid"));
|
||||
return form_item(t("Recent posts"), l(t("recent posts"), "tracker/$user->uid"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -104,8 +104,8 @@ function tracker_page() {
|
|||
global $user;
|
||||
|
||||
if (user_access("access content")) {
|
||||
theme("header", t("Recent activity"));
|
||||
theme("box", t("Recent activity"), tracker_posts(arg(1)));
|
||||
theme("header", t("Recent posts"));
|
||||
theme("box", t("Recent posts"), tracker_posts(arg(1)));
|
||||
theme("footer");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue