Removed PHP strict notices.
This commit is contained in:
parent
f21ce58780
commit
ac0fa7830e
1 changed files with 5 additions and 2 deletions
|
@ -302,8 +302,11 @@ function wp_ffpc_callback( $buffer ) {
|
|||
$buffer = substr_replace( $buffer, $insertion, $index, 0);
|
||||
}
|
||||
|
||||
$wp_ffpc_backend->set ( $wp_ffpc_backend->key ( $wp_ffpc_config['prefix_meta'] ) , $meta );
|
||||
$wp_ffpc_backend->set ( $wp_ffpc_backend->key ( $wp_ffpc_config['prefix_data'] ) , $buffer );
|
||||
$prefix_meta = $wp_ffpc_backend->key ( $wp_ffpc_config['prefix_meta'] );
|
||||
$wp_ffpc_backend->set ( $prefix_meta, $meta );
|
||||
|
||||
$prefix_data = $wp_ffpc_backend->key ( $wp_ffpc_config['prefix_data'] );
|
||||
$wp_ffpc_backend->set ( $prefix_data , $buffer );
|
||||
|
||||
if ( $meta['status'] == 404 ) {
|
||||
header("HTTP/1.1 404 Not Found");
|
||||
|
|
Loading…
Reference in a new issue