From ea1dac4064e34c997070ebfdab778f39ae273a96 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Fri, 25 Apr 2008 23:19:34 +0000 Subject: [PATCH] Update the ProfileSettings operation to use isDynamicCompatible instead of the old, crufty get('profileEnabled'). --- lib/WebGUI/Operation/ProfileSettings.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Operation/ProfileSettings.pm b/lib/WebGUI/Operation/ProfileSettings.pm index e176f8072..25afa30a1 100644 --- a/lib/WebGUI/Operation/ProfileSettings.pm +++ b/lib/WebGUI/Operation/ProfileSettings.pm @@ -310,7 +310,7 @@ sub www_editProfileField { $session->errorHandler->error($@); next; } - push @profileForms, $form if $w->get("profileEnabled"); + push @profileForms, $form if $w->isDynamicCompatible(); } $fieldType->set("types", \@profileForms);