| @@ -1,8 +1,8 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /* |
| 3 | 3 | Plugin Name: Boxzilla |
| 4 | -Version: 3.1.15 | |
| 4 | +Version: 3.1.3 | |
| 5 | 5 | Plugin URI: https://boxzillaplugin.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page |
| 6 | 6 | Description: Call-To-Action Boxes that display after visitors scroll down far enough. Unobtrusive, but highly conversing! |
| 7 | 7 | Author: ibericode |
| 8 | 8 | Author URI: https://ibericode.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page |
| @@ -37,12 +37,12 @@ | ||
| 37 | 37 | /** |
| 38 | 38 | * @ignore |
| 39 | 39 | * @internal |
| 40 | 40 | */ |
| 41 | -function _load_boxzilla() { | |
| 41 | +function __load_boxzilla() { | |
| 42 | 42 | |
| 43 | 43 | define( 'BOXZILLA_FILE', __FILE__ ); |
| 44 | - define( 'BOXZILLA_VERSION', '3.1.15' ); | |
| 44 | + define( 'BOXZILLA_VERSION', '3.1.3' ); | |
| 45 | 45 | |
| 46 | 46 | require __DIR__ . '/bootstrap.php'; |
| 47 | 47 | } |
| 48 | 48 | |
| @@ -61,8 +61,8 @@ | ||
| 61 | 61 | // register activation hook |
| 62 | 62 | register_activation_hook( __FILE__, array( 'Boxzilla\\Admin\\Installer', 'run' ) ); |
| 63 | 63 | |
| 64 | 64 | // hook into plugins_loaded for boostrapping |
| 65 | -add_action( 'plugins_loaded', '_load_boxzilla', 8 ); | |
| 65 | +add_action( 'plugins_loaded', '__load_boxzilla', 8 ); | |
| 66 | 66 | |
| 67 | 67 | |
| 68 | 68 | |