From 6c3e1a21d79c344dc54c7e8fe789068ccda3a48b Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 3 Nov 2011 16:02:32 -0500 Subject: Fixed blank krbtpolicy and config pages. The details page compares the old and the new primary keys to determine if the page needs to be reloaded. The Kerberos Ticket Policy and Config pages do not use primary keys, so they are never loaded/updated with data. A parameter has been added to force update on these pages. Ticket #1459 --- install/ui/association.js | 1 + 1 file changed, 1 insertion(+) (limited to 'install/ui/association.js') diff --git a/install/ui/association.js b/install/ui/association.js index d3d6b124..6ce8fea4 100644 --- a/install/ui/association.js +++ b/install/ui/association.js @@ -1206,6 +1206,7 @@ IPA.association_facet = function (spec) { }; that.needs_update = function() { + if (that._needs_update !== undefined) return that._needs_update; var pkey = IPA.nav.get_state(that.entity.name+'-pkey'); return that.pkey !== pkey; }; -- cgit