Merge pull request #15 from haroldkyle/master
Removed PHP strict notices.
This commit is contained in:
commit
6cd27fe498
2 changed files with 6 additions and 3 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");
|
||||
|
|
|
@ -448,7 +448,7 @@ if ( ! class_exists( 'WP_FFPC' ) ) {
|
|||
</dd>
|
||||
|
||||
<dt>
|
||||
<label for="expire"><?php _e('Expiration time (ms)', $this->plugin_constant); ?></label>
|
||||
<label for="expire"><?php _e('Expiration time (seconds)', $this->plugin_constant); ?></label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="number" name="expire" id="expire" value="<?php echo $this->options['expire']; ?>" />
|
||||
|
|
Loading…
Reference in a new issue