summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-29 23:12:54 +0400
committerAndrew Dolgov <[email protected]>2013-04-29 23:12:54 +0400
commit52e7b5a096f5d0d7724b6f1731559b237b2c47ae (patch)
tree966e649f054221384388684f193ed521e9e164bc /js/prefs.js
parent39ede9862f1df94b24cbe476ec66eca99a1d1a2f (diff)
add clear sql log button
Diffstat (limited to 'js/prefs.js')
-rw-r--r--js/prefs.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/js/prefs.js b/js/prefs.js
index 431a1fe84..4346054ef 100644
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -1833,3 +1833,21 @@ function clearPluginData(name) {
exception_error("clearPluginData", e);
}
}
+
+function clearSqlLog() {
+
+ if (confirm(__("Clear all messages in the error log?"))) {
+
+ notify_progress("Loading, please wait...");
+ var query = "?op=pref-system&method=clearLog";
+
+ new Ajax.Request("backend.php", {
+ parameters: query,
+ onComplete: function(transport) {
+ updateSystemList();
+ } });
+
+ }
+}
+
+