Skip to content

Commit 829d17c

Browse files
authored
Fix undefined variable "field_array" in html_filter
1 parent 834d52f commit 829d17c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/html_filter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ private function make_function($buttonId, $buttonArray, $buttonAction) {
688688

689689
$buttonFunction .= PHP_EOL . "\t\tfunction {$buttonId}Function () {" . $func_nl .
690690
"clearTimeout(myRefresh);" . $func_nl .
691-
"$('#text').text('{$field_array['status']}');" . $func_nl .
691+
"$('#text').text('{buttonArray['status']}');" . $func_nl .
692692
"pulsate('#text');" . $func_nl .
693693
$callbackFunction . ";" . $func_el .
694694
"Pace.stop();" . $func_el .

0 commit comments

Comments
 (0)