rathena / FluxCP

Audit required: Presence of debug function found PHP-A1012
Security
Critical
1 occurrence in this check
Use of print_r() to log can be risky if the variable contains sensitive information
371        if ($this->do_debug >= 1) {
372            echo '<pre>';
373            foreach ($this->errors as $error) {
374                print_r($error);375            }
376            echo '</pre>';
377        }