Originally posted by Seikilos
View Post
PHP Code:
function check_captcha($value) {
if (ENVIRONMENT == 'test') {
return true;
} else {
return call_api($value);
}
}
Comment