summaryrefslogtreecommitdiff
path: root/classes/pref/system.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/pref/system.php')
-rw-r--r--classes/pref/system.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/pref/system.php b/classes/pref/system.php
index a4a072ea9..bc519a321 100644
--- a/classes/pref/system.php
+++ b/classes/pref/system.php
@@ -165,8 +165,8 @@ class Pref_System extends Handler_Administrative {
<script type='dojo/method' event='onSelected' args='evt'>
if (this.domNode.querySelector('.loading'))
window.setTimeout(() => {
- xhrPost("backend.php", {op: 'pref-system', method: 'getphpinfo'}, (transport) => {
- this.attr('content', `<div class='phpinfo'>${transport.responseText}</div>`);
+ xhr.post("backend.php", {op: 'pref-system', method: 'getphpinfo'}, (reply) => {
+ this.attr('content', `<div class='phpinfo'>${reply}</div>`);
});
}, 200);
</script>