From 7d1df3a49dffcfab936e34a3086e34587d439872 Mon Sep 17 00:00:00 2001 From: skodak Date: Mon, 25 Sep 2006 19:05:04 +0000 Subject: [PATCH] moodle specific developer debug messages disabled in admin/dbperformance.php page, because they might interfere with frames --- admin/dbperformance.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/admin/dbperformance.php b/admin/dbperformance.php index fee2c390dc..e39c98febc 100644 --- a/admin/dbperformance.php +++ b/admin/dbperformance.php @@ -3,6 +3,9 @@ require_once('../config.php'); + // disable moodle specific debug messages that would be breaking the frames + disable_debugging(); + $topframe = optional_param('topframe', 0, PARAM_BOOL); $bottomframe = optional_param('bottomframe', 0, PARAM_BOOL); $do = optional_param('do', '', PARAM_ALPHA); -- 2.39.5