summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
Diffstat (limited to 'api')
-rw-r--r--api/index.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/api/index.php b/api/index.php
index be2661285..fd22f4b8b 100644
--- a/api/index.php
+++ b/api/index.php
@@ -344,7 +344,11 @@
print json_encode($config);
+ break;
+ case "getPref":
+ $pref_name = db_escape_string($_REQUEST["pref_name"]);
+ print json_encode(array("value" => get_pref($link, $pref_name)));
break;
}