8000 Bug fixed. · etherscan-io/Ethplorer@21e0e8d · GitHub
[go: up one dir, main page]

Skip to content

Commit 21e0e8d

Browse files
committed
Bug fixed.
1 parent 5971532 commit 21e0e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/lib/ethplorer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3639,7 +3639,7 @@ protected function varExportMin($input){
36393639
if(is_array($input)){
36403640
$buffer = [];
36413641
foreach($input as $key => $value){
3642-
$buffer[] = var_export($key, true) . "=>" . varExportMin($value);
3642+
$buffer[] = var_export($key, true) . "=>" . $this->varExportMin($value);
36433643
}
36443644
return "[" . implode(",", $buffer) . "]";
36453645
}else{

0 commit comments

Comments
 (0)
0