15 lines
286 B
PHP
15 lines
286 B
PHP
<?php
|
|
class OcSPAccept {
|
|
|
|
|
|
public function execute(
|
|
&$sp_options = array(),
|
|
&$oc_post = array()
|
|
) {
|
|
if ( array_key_exists( 'HTTP_ACCEPT', $_SERVER ) ) {
|
|
return false;
|
|
}
|
|
return __( 'HTTP_ACCEPT header', 'onecom-sp' ) . ' ' . __( 'Not found', 'onecom-sp' ) . '.';
|
|
}
|
|
}
|