From 8fc0f9451e63c92ec99eadb8cd13dd69ded69156 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 4 Jul 2011 19:07:26 +0000 Subject: - Fix GCC errors and warnings (#1487988) --- program/js/app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'program/js/app.js') diff --git a/program/js/app.js b/program/js/app.js index 5a9ed219d..a9c345b41 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -4489,7 +4489,7 @@ function rcube_webmail() }; // Add folder row to the table and initialize it - this.add_folder_row = function (name, display_name, protected, subscribed, skip_init, class_name) + this.add_folder_row = function (name, display_name, is_protected, subscribed, skip_init, class_name) { if (!this.gui_objects.subscriptionlist) return false; @@ -4517,7 +4517,7 @@ function rcube_webmail() // update subscription checkbox $('input[name="_subscribed[]"]', row).val(name) - .prop({checked: subscribed ? true : false, disabled: protected ? true : false}); + .prop({checked: subscribed ? true : false, disabled: is_protected ? true : false}); // add to folder/row-ID map this.env.subscriptionrows[id] = [name, display_name, 0]; @@ -4568,7 +4568,7 @@ function rcube_webmail() }; // replace an existing table row with a new folder line (with subfolders) - this.replace_folder_row = function(oldfolder, newfolder, display_name, protected, class_name) + this.replace_folder_row = function(oldfolder, newfolder, display_name, is_protected, class_name) { if (!this.gui_objects.subscriptionlist) return false; @@ -4584,7 +4584,7 @@ function rcube_webmail() // replace an existing table row this._remove_folder_row(id); - row = $(this.add_folder_row(newfolder, display_name, protected, subscribed, true, class_name)); + row = $(this.add_folder_row(newfolder, display_name, is_protected, subscribed, true, class_name)); // detect tree depth change if (len = list.length) { -- cgit v1.2.3