Remove the showPerformance setting, it's now subsumed into the Plack debug console.

This commit is contained in:
Colin Kuskie 2011-12-28 18:33:08 -08:00
parent 5bbfe27f35
commit cb7581a7a8
2 changed files with 7 additions and 8 deletions

View file

@ -370,14 +370,6 @@ sub definition {
hoverHelp=>$i18n->get('707 description'),
defaultValue=>$setting->get("showDebug")
});
push(@fields, {
tab=>"misc",
fieldType=>"yesNo",
name=>"showPerformanceIndicators",
label=>$i18n->get('show performance indicators'),
hoverHelp=>$i18n->get('show performance indicators description'),
defaultValue=>$setting->get("showPerformanceIndicators")
});
push(@fields, {
tab=>"misc",
fieldType=>"selectBox",

View file

@ -0,0 +1,7 @@
use WebGUI::Upgrade::Script;
start_step "Removing show performance setting";
session->setting->remove('showPerformanceIndicators');
done;