Plugin Directory

Changeset 2128679


Ignore:
Timestamp:
07/25/2019 07:18:28 PM (7 years ago)
Author:
munklefish
Message:

Committing V0.9.9

Location:
clinicalwp-core/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • clinicalwp-core/trunk/Clinical_CMS.php

    r2127527 r2128679  
    77    Description: Plugin for implementing ClinicalWP core customisations including; Speed Enhancements, Increased Security, Image Enhancements, Support Panels and much more.
    88    //OLD Version: 3.7.9
    9     Version: 0.9.8
     9    Version: 0.9.9
    1010    Requires at least: 3.9
    1111    Tested up to: 5.2.2
    1212    Requires PHP: 5.0
    13     Stable tag: 0.9.8
     13    Stable tag: 0.9.9
    1414    Contributors: munklefish, missmanylayers, clinicalwp, codeclinic, freemius
    1515    Text Domain: Clinical-CMS-Core
     
    3636        if (is_plugin_active('titan-framework/titan-framework.php')) {
    3737            deactivate_plugins('titan-framework/titan-framework.php');
     38        }
     39        if (!is_plugin_active('titan-framework/titan-framework.php')) {
    3840            activate_plugins('titan-framework/titan-framework.php');
    3941        }
     
    346348        function return_CMS_Ver_ID($arg = '')
    347349        {
    348             return "0.9.8";
     350            return "0.9.9";
    349351            //echo apply_filters( 'CMS_Ver_ID', '' );
    350352        }
     
    52555257        //lets clear object cache so settings stick
    52565258        $titan = TitanFramework::getInstance('clinical_cms');
    5257         //$value = $titan->getOption( 'clinical_cache_objects' );
     5259        $value = $titan->getOption( 'clinical_cache_objects' );
    52585260        $ip = $titan->getOption('clinical_cache_objects_server_ip');
    52595261        $port = $titan->getOption('clinical_cache_objects_server_port');
    5260         if (class_exists('Memcached')) {
     5262        if (class_exists('Memcached') && ($value)) {
    52615263            /* flush all items in x seconds */
    52625264            $m = new Memcached();
    52635265            $m->addServer($ip, $port);
    52645266            $m->flush();
    5265         } else if (class_exists('Memcache')) {
     5267        } else if (class_exists('Memcache') && ($value)) {
    52665268            // flush memcache
    52675269            $memcache_obj = new Memcache;
  • clinicalwp-core/trunk/README.txt

    r2127527 r2128679  
    88Tested up to: 5.2.2
    99Requires PHP: 5.0
    10 Version: 0.9.8
    11 Stable tag: 0.9.8
     10Version: 0.9.9
     11Stable tag: 0.9.9
    1212License: GPLv3
    1313License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    131131
    132132== Upgrade Notice ==
    133 = 0.9.7 (Released 2019/07/23) =
    134 * Temporarily removed backend for removing comments from admin bar as temp fix
    135 * Fixed potential install failure issue
    136 
    137 = 0.9.6 (Released 2019/07/23) =
    138 * Improved contrast of button text on dashboard widget
    139 * Restored & resolved comment removal from admin bar
    140 * Removed Code Clinic RSS Feed widget
    141 * Removed Customised 'Welcome Panel'
    142 * Restored WP Default 'Welcome Panel'
    143 * Various option description improvements
     133= 0.9.9 (Released 2019/07/25) =
     134* Fixed issue causing Data Cache warning when Object caching not available
     135* Improved Titan Framework integration for greater reliability
     136* Minor tweaks and optimisations
    144137
    145138
     
    150143
    151144Click \"Upload Plugin\" button to enable the upload field. Select the zip file containing the ClinicalWP plugin that you wish to install, then click \"Install Now\" to have WordPress complete the installation. Once this is complete simply activate your plugin. You should now see ClinicalWP is available via the WP admin menu on the left of the screen.
     145
    152146
    153147== Frequently Asked Questions ==
     
    175169
    176170== Changelog ==
     171= 0.9.9 (Released 2019/07/25) =
     172* Fixed issue causing Data Cache warning when Object caching not available
     173* Improved Titan Framework integration for greater reliability
     174* Minor tweaks and optimisations
     175
    177176= 0.9.7 (Released 2019/07/23) =
    178177* Minor fixes
Note: See TracChangeset for help on using the changeset viewer.