diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-07-01 17:54:22 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-07-01 17:54:22 +0000 |
commit | dc15ba06e05df99885d0024b2fc9173291e79038 (patch) | |
tree | ad14e1874ef5bb0bd109e1e9376d1da2107b0722 /modules/system | |
parent | 3bb6ddee4b2b3fa1b48dc557b3be7af2ea521ecb (diff) | |
download | brdo-dc15ba06e05df99885d0024b2fc9173291e79038.tar.gz brdo-dc15ba06e05df99885d0024b2fc9173291e79038.tar.bz2 |
- Improvement: don't perform XSS checks for trusted users. Trusted users
are those that have the "bypass input data check" permission set. Should
address bug #2147.
- Improvement: simplified index.php and modules/admin.module.
- Bugfix: fixed broken links in bloggerapi documentation. Patch by Chris
Johnson. Fixes bug #2030.
- Bugfix: fixed the date shown on a book module preview. Reported as part
of bug #2097.
- Bugfix: fixed broken URL in the book module documentation.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index be3e47c36..a4c0dc981 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -31,7 +31,7 @@ function system_help_cron() { } function system_perm() { - return array("administer site configuration", "access administration pages", "create php content"); + return array("administer site configuration", "access administration pages", "bypass input data check", "create php content"); } function system_link($type) { |