We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warning: Wrong parameter count for debug_backtrace() in /home/xxxx/public_html/classes/db/DB.class.php on line 450
Warning: Invalid argument supplied for foreach() in /home/xxxx/public_html/classes/db/DB.class.php on line 451
1.7.4 업데이트후 debug_backtrace 함수의 parameter가 적용이 안되면서 오류가 발생합니다. DB.class.php 파일의 450번째 줄
$bt = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
에서 parameter 를 빼주면 문제가 해결됩니다.
$bt = debug_backtrace();
php version 5.2.4
The text was updated successfully, but these errors were encountered:
오 마이 갓. 알려주셔서 감사합니다.
Sorry, something went wrong.
fix #416 PHP 5.3.6 이상에서만 사용 가능한 상수 제거
9af3c9e
809a526
No branches or pull requests
Warning: Wrong parameter count for debug_backtrace() in /home/xxxx/public_html/classes/db/DB.class.php on line 450
Warning: Invalid argument supplied for foreach() in /home/xxxx/public_html/classes/db/DB.class.php on line 451
1.7.4 업데이트후 debug_backtrace 함수의 parameter가 적용이 안되면서 오류가 발생합니다.
DB.class.php 파일의 450번째 줄
에서 parameter 를 빼주면 문제가 해결됩니다.
php version 5.2.4
The text was updated successfully, but these errors were encountered: