Subversion Repositories oidplus

Rev

Rev 642 | Rev 833 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 642 Rev 675
Line 33... Line 33...
33
                        data: {
33
                        data: {
34
                                csrf_token: csrf_token,
34
                                csrf_token: csrf_token,
35
                                plugin: OIDplusPageAdminSystemConfig.oid,
35
                                plugin: OIDplusPageAdminSystemConfig.oid,
36
                                action: "config_update",
36
                                action: "config_update",
37
                                name: name,
37
                                name: name,
38
                                value: $("#config_"+name)[0].value,
38
                                value: $("#config_"+$.escapeSelector(name))[0].value,
39
                        },
39
                        },
40
                        error:function(jqXHR, textStatus, errorThrown) {
40
                        error:function(jqXHR, textStatus, errorThrown) {
41
                                if (errorThrown == "abort") return;
41
                                if (errorThrown == "abort") return;
42
                                alert(_L("Error: %1",errorThrown));
42
                                alert(_L("Error: %1",errorThrown));
43
                        },
43
                        },