[core] Remove last remaining parts of profiling code which was removed in 2006.

This commit is contained in:
Michal Čihař
2010-08-30 11:01:31 +02:00
parent bf8a597d78
commit 7f1b1df69f
10 changed files with 6 additions and 123 deletions

View File

@@ -48,21 +48,6 @@ if (!empty($_GET['saved'])) {
$message->display();
}
// debug info
if ($cfg['DBG']['php']) {
$arr = ConfigFile::getInstance()->getConfigArray();
$arr2 = array();
foreach ($arr as $k => $v) {
$arr2[] = "<b>$k</b> " . var_export($v, true);
}
$arr2 = implode(', ', $arr2);
$arr2 .= '<br />Blacklist: ' . (empty($cfg['UserprefsDisallow'])
? '<i>empty</i>'
: implode(', ', $cfg['UserprefsDisallow']));
$msg = PMA_Message::notice('Settings: ' . $arr2);
$msg->display();
}
// warn about using session storage for settings
$cfgRelation = PMA_getRelationsParam();
if (!$cfgRelation['userconfigwork']) {