Plugin Directory

Changeset 1139240


Ignore:
Timestamp:
04/20/2015 03:59:03 PM (11 years ago)
Author:
vlastuin
Message:

Release 1.0.11 - See changelog

Location:
vevida-optimizer
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • vevida-optimizer/tags/1.0.11/readme.txt

    r1136009 r1139240  
    44Requires at least: 3.9
    55Tested up to: 4.1.1
    6 Stable tag: 1.0.10
     6Stable tag: 1.0.11
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9696== Changelog ==
    9797
     98= 1.0.11 =
     99Release date: April 20th 2015
     100
     101* Updates in plugin details
     102* fix: Error when activating plugin if get_plugins returns uncommon plugin names
     103
    98104= 1.0.10 =
    99105Release date: April 16th 2015
  • vevida-optimizer/tags/1.0.11/vevida-optimizer.php

    r1136009 r1139240  
    22/**
    33 * Plugin Name: Vevida Optimizer
     4 * Plugin URI: https://wordpress.org/plugins/vevida-optimizer/
    45 * Description: Configure automatic updates for each WordPress component, and optimize the mySQL database tables.
    5  * Version: 1.0.10
     6 * Version: 1.0.11
    67 * Author: Jan Vlastuin, Jan Reilink
    7  * Author URI: vevida.hosting
     8 * Author URI: http://vevida.hosting
    89 * License: GPLv2
    910 * Text Domain: vevida-optimizer
     
    6566    $loaded_plugins = get_plugins();
    6667    foreach ($loaded_plugins as $key => $val) {
    67         $plugin_slug = explode( '/', $key )[0];
    68         add_option( 'vevida_optimizer_plugin_'.$plugin_slug, true );
     68        $plugin_array = explode( '/', $key );
     69        if ( is_array( $plugin_array ) ) {
     70            $plugin_slug = $plugin_array[0];
     71            add_option( 'vevida_optimizer_plugin_'.$plugin_slug, true );
     72        }
    6973    }
    7074}
  • vevida-optimizer/trunk/readme.txt

    r1136009 r1139240  
    44Requires at least: 3.9
    55Tested up to: 4.1.1
    6 Stable tag: 1.0.10
     6Stable tag: 1.0.11
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9696== Changelog ==
    9797
     98= 1.0.11 =
     99Release date: April 20th 2015
     100
     101* Updates in plugin details
     102* fix: Error when activating plugin if get_plugins returns uncommon plugin names
     103
    98104= 1.0.10 =
    99105Release date: April 16th 2015
  • vevida-optimizer/trunk/vevida-optimizer.php

    r1136009 r1139240  
    22/**
    33 * Plugin Name: Vevida Optimizer
     4 * Plugin URI: https://wordpress.org/plugins/vevida-optimizer/
    45 * Description: Configure automatic updates for each WordPress component, and optimize the mySQL database tables.
    5  * Version: 1.0.10
     6 * Version: 1.0.11
    67 * Author: Jan Vlastuin, Jan Reilink
    7  * Author URI: vevida.hosting
     8 * Author URI: http://vevida.hosting
    89 * License: GPLv2
    910 * Text Domain: vevida-optimizer
     
    6566    $loaded_plugins = get_plugins();
    6667    foreach ($loaded_plugins as $key => $val) {
    67         $plugin_slug = explode( '/', $key )[0];
    68         add_option( 'vevida_optimizer_plugin_'.$plugin_slug, true );
     68        $plugin_array = explode( '/', $key );
     69        if ( is_array( $plugin_array ) ) {
     70            $plugin_slug = $plugin_array[0];
     71            add_option( 'vevida_optimizer_plugin_'.$plugin_slug, true );
     72        }
    6973    }
    7074}
Note: See TracChangeset for help on using the changeset viewer.