Plugin Directory

Changeset 3019290


Ignore:
Timestamp:
01/09/2024 12:59:07 PM (2 years ago)
Author:
Papin
Message:

Tagging version 3.8.9.1

Location:
companion-auto-update
Files:
2 edited
6 copied

Legend:

Unmodified
Added
Removed
  • companion-auto-update/tags/3.8.9.1/cau_functions.php

    r3012122 r3019290  
    6363
    6464    foreach ( cau_incompatiblePluginlist() as $key => $value ) {
    65         if( is_plugin_active( $key ) ) {
     65        if( function_exists( 'is_plugin_active' ) && is_plugin_active( $key ) ) {
    6666            $return = true;
    6767        }
     
    9898    if( cau_incompatiblePlugins() ) {
    9999        foreach ( cau_incompatiblePluginlist() as $key => $value ) {
    100             if( is_plugin_active( $key ) ) {
     100            if( function_exists( 'is_plugin_active' ) && is_plugin_active( $key ) ) {
    101101                $count++;
    102102            }
  • companion-auto-update/tags/3.8.9.1/companion-auto-update.php

    r3019154 r3019290  
    55 * Plugin URI: http://codeermeneer.nl/portfolio/companion-auto-update/
    66 * Description: This plugin auto updates all plugins, all themes and the wordpress core.
    7  * Version: 3.8.9
     7 * Version: 3.8.9.1
    88 * Author: Papin Schipper
    99 * Author URI: http://codeermeneer.nl/
  • companion-auto-update/trunk/cau_functions.php

    r3012122 r3019290  
    6363
    6464    foreach ( cau_incompatiblePluginlist() as $key => $value ) {
    65         if( is_plugin_active( $key ) ) {
     65        if( function_exists( 'is_plugin_active' ) && is_plugin_active( $key ) ) {
    6666            $return = true;
    6767        }
     
    9898    if( cau_incompatiblePlugins() ) {
    9999        foreach ( cau_incompatiblePluginlist() as $key => $value ) {
    100             if( is_plugin_active( $key ) ) {
     100            if( function_exists( 'is_plugin_active' ) && is_plugin_active( $key ) ) {
    101101                $count++;
    102102            }
  • companion-auto-update/trunk/companion-auto-update.php

    r3019154 r3019290  
    55 * Plugin URI: http://codeermeneer.nl/portfolio/companion-auto-update/
    66 * Description: This plugin auto updates all plugins, all themes and the wordpress core.
    7  * Version: 3.8.9
     7 * Version: 3.8.9.1
    88 * Author: Papin Schipper
    99 * Author URI: http://codeermeneer.nl/
Note: See TracChangeset for help on using the changeset viewer.