From 1f9531bea203e7c4706ec5607fcb3c3111436373 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Mon, 8 Nov 2010 20:39:40 -0500 Subject: delete to remove THe keyword delete is reserved in Javascript Using it breaks the WebUI on Chrome. This fixes replaces the word with delete. --- ipalib/plugins/internal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/internal.py') diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index bf477b74b..f1a16c987 100644 --- a/ipalib/plugins/internal.py +++ b/ipalib/plugins/internal.py @@ -43,7 +43,7 @@ class json_metadata(Command): "reset":_("Reset"), "update":_("Update"), "enroll":_("Enroll"), - "delete":_("Delete"), + "remove":_("Delete"), }, "search":{ "quick_links":_("Quick Links"), -- cgit