diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-07-03 19:16:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-07-03 19:16:20 +0000 |
commit | 43db9cf86fdfba736117cda501c6eb1d31d04693 (patch) | |
tree | 3cd7a03007285b6b4ff3119f30c69484358b55c7 /modules/system/system.module | |
parent | 6a21940c762cce2b777a2fe9102c675e7db9f6e2 (diff) | |
download | brdo-43db9cf86fdfba736117cda501c6eb1d31d04693.tar.gz brdo-43db9cf86fdfba736117cda501c6eb1d31d04693.tar.bz2 |
- common.inc:
+ Made '$na' translatable on popular demand.
- node.module:
+ replaced a confusing configuration description, as suggested by
Remco.
- statistics.module:
+ Added a 'most recent referers'-table sorted by timestamp.
- drupal.module:
+ Small update of the links.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 7f9981727..77f0013e4 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -13,12 +13,12 @@ function system_help() { } function system_perm() { - return array("administer system settings"); + return array("administer settings and filters"); } function system_link($type) { - if ($type == "admin" && user_access("administer system settings")) { - $links[] = "<a href=\"admin.php?mod=system\">system settings</a>"; + if ($type == "admin" && user_access("administer settings and filters")) { + $links[] = "<a href=\"admin.php?mod=system\">settings and filters</a>"; } return $links ? $links : array(); @@ -129,7 +129,7 @@ function system_modules() { function system_admin() { global $edit, $op, $type; - if (user_access("administer system settings")) { + if (user_access("administer settings and filters")) { print "<SMALL><A HREF=\"admin.php?mod=system&type=options\">site settings</A> | <A HREF=\"admin.php?mod=system&type=filter\">content filters</A> | <A HREF=\"admin.php?mod=system&op=modules\">modules</A> | <A HREF=\"admin.php?mod=system&op=help\">help</A></SMALL><HR>\n"; |