PluginProbe
SQLite Object Cache / 1.6.0
SQLite Object Cache v1.6.0
1.6.5 trunk 0.1.7 1.0.0 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4.0 1.4.1 1.5.1 1.5.4 1.5.5 1.5.6 1.5.7 All 30 releases
← All changes | sqlite-object-cache.php +4 -4 1.5.61.6.0 View file →
@@ -1,8 +1,8 @@
1 1 <?php
2 2 /**
3 3 * Plugin Name: SQLite Object Cache
4 - * Version: 1.5.6
4 + * Version: 1.6.0
5 5 * Plugin URI: https://github.com/OllieJones/sqlite-object-cache
6 6 * Description: A persistent object cache backend powered by SQLite3.
7 7 * Author: Oliver Jones
8 8 * Author URI: https://github.com/OllieJones/
@@ -7,9 +7,9 @@
7 7 * Author: Oliver Jones
8 8 * Author URI: https://github.com/OllieJones/
9 9 * Requires at least: 5.5
10 10 * Requires PHP: 5.6
11 - * Tested up to: 6.8
11 + * Tested up to: 6.9
12 12 *
13 13 * Text Domain: sqlite-object-cache
14 14 * Domain Path: /languages/
15 15 *
@@ -43,12 +43,12 @@
43 43 * @return object SQLite_Object_Cache
44 44 * @since 1.0.0
45 45 */
46 46 function sqlite_object_cache() {
47 - $instance = new SQLite_Object_Cache( __FILE__, '1.5.6' );
47 + $instance = new SQLite_Object_Cache( __FILE__, '1.6.0' );
48 48
49 49 if ( is_admin() ) {
50 - $instance->settings = new SQLite_Object_Cache_Settings( $instance );
50 + $instance->settings = new SQLite_Object_Cache_Settings( $instance, plugin_basename( __FILE__ ));
51 51 }
52 52
53 53 return $instance;
54 54 }