Update WP and plugins

This commit is contained in:
Oliver Davies 2019-04-16 20:56:22 +01:00
parent 10a4713229
commit 1fb77fc4ff
864 changed files with 101724 additions and 78262 deletions

View file

@ -50,8 +50,8 @@ class WP_Feed_Cache_Transient {
* @param string $filename Unique identifier for cache object.
* @param string $extension 'spi' or 'spc'.
*/
public function __construct($location, $filename, $extension) {
$this->name = 'feed_' . $filename;
public function __construct( $location, $filename, $extension ) {
$this->name = 'feed_' . $filename;
$this->mod_name = 'feed_mod_' . $filename;
$lifetime = $this->lifetime;
@ -63,7 +63,7 @@ class WP_Feed_Cache_Transient {
* @param int $lifetime Cache duration in seconds. Default is 43200 seconds (12 hours).
* @param string $filename Unique identifier for the cache object.
*/
$this->lifetime = apply_filters( 'wp_feed_cache_transient_lifetime', $lifetime, $filename);
$this->lifetime = apply_filters( 'wp_feed_cache_transient_lifetime', $lifetime, $filename );
}
/**
@ -74,13 +74,13 @@ class WP_Feed_Cache_Transient {
* @param SimplePie $data Data to save.
* @return true Always true.
*/
public function save($data) {
public function save( $data ) {
if ( $data instanceof SimplePie ) {
$data = $data->data;
}
set_transient($this->name, $data, $this->lifetime);
set_transient($this->mod_name, time(), $this->lifetime);
set_transient( $this->name, $data, $this->lifetime );
set_transient( $this->mod_name, time(), $this->lifetime );
return true;
}
@ -92,7 +92,7 @@ class WP_Feed_Cache_Transient {
* @return mixed Transient value.
*/
public function load() {
return get_transient($this->name);
return get_transient( $this->name );
}
/**
@ -103,7 +103,7 @@ class WP_Feed_Cache_Transient {
* @return mixed Transient value.
*/
public function mtime() {
return get_transient($this->mod_name);
return get_transient( $this->mod_name );
}
/**
@ -114,7 +114,7 @@ class WP_Feed_Cache_Transient {
* @return bool False if value was not set and true if value was set.
*/
public function touch() {
return set_transient($this->mod_name, time(), $this->lifetime);
return set_transient( $this->mod_name, time(), $this->lifetime );
}
/**
@ -125,8 +125,8 @@ class WP_Feed_Cache_Transient {
* @return true Always true.
*/
public function unlink() {
delete_transient($this->name);
delete_transient($this->mod_name);
delete_transient( $this->name );
delete_transient( $this->mod_name );
return true;
}
}