diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-12-08 06:44:52 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-12-08 06:44:52 +0000 |
commit | 581aeddc116a33e086763e194ceb74722d6672a8 (patch) | |
tree | 2211e6024a0428897ec748354acdc846c46461a3 | |
parent | 7fdebc6389cad5cbbee3dfbb0c84b7cc9c5dc990 (diff) | |
download | brdo-581aeddc116a33e086763e194ceb74722d6672a8.tar.gz brdo-581aeddc116a33e086763e194ceb74722d6672a8.tar.bz2 |
#941288 by David_Rothstein: Fixed overlay behaviour on phpinfo() link.
-rw-r--r-- | modules/system/system.module | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 8a415ab38..46c4838c8 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -3894,6 +3894,9 @@ function system_admin_paths() { 'admin' => TRUE, 'admin/*' => TRUE, 'batch' => TRUE, + // This page should not be treated as administrative since it outputs its + // own content (outside of any administration theme). + 'admin/reports/status/php' => FALSE, ); return $paths; } |