summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/system/system.module3
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;
}