Changeset 2128679
- Timestamp:
- 07/25/2019 07:18:28 PM (7 years ago)
- Location:
- clinicalwp-core/trunk
- Files:
-
- 2 edited
-
Clinical_CMS.php (modified) (4 diffs)
-
README.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
clinicalwp-core/trunk/Clinical_CMS.php
r2127527 r2128679 7 7 Description: Plugin for implementing ClinicalWP core customisations including; Speed Enhancements, Increased Security, Image Enhancements, Support Panels and much more. 8 8 //OLD Version: 3.7.9 9 Version: 0.9. 89 Version: 0.9.9 10 10 Requires at least: 3.9 11 11 Tested up to: 5.2.2 12 12 Requires PHP: 5.0 13 Stable tag: 0.9. 813 Stable tag: 0.9.9 14 14 Contributors: munklefish, missmanylayers, clinicalwp, codeclinic, freemius 15 15 Text Domain: Clinical-CMS-Core … … 36 36 if (is_plugin_active('titan-framework/titan-framework.php')) { 37 37 deactivate_plugins('titan-framework/titan-framework.php'); 38 } 39 if (!is_plugin_active('titan-framework/titan-framework.php')) { 38 40 activate_plugins('titan-framework/titan-framework.php'); 39 41 } … … 346 348 function return_CMS_Ver_ID($arg = '') 347 349 { 348 return "0.9. 8";350 return "0.9.9"; 349 351 //echo apply_filters( 'CMS_Ver_ID', '' ); 350 352 } … … 5255 5257 //lets clear object cache so settings stick 5256 5258 $titan = TitanFramework::getInstance('clinical_cms'); 5257 //$value = $titan->getOption( 'clinical_cache_objects' );5259 $value = $titan->getOption( 'clinical_cache_objects' ); 5258 5260 $ip = $titan->getOption('clinical_cache_objects_server_ip'); 5259 5261 $port = $titan->getOption('clinical_cache_objects_server_port'); 5260 if (class_exists('Memcached') ) {5262 if (class_exists('Memcached') && ($value)) { 5261 5263 /* flush all items in x seconds */ 5262 5264 $m = new Memcached(); 5263 5265 $m->addServer($ip, $port); 5264 5266 $m->flush(); 5265 } else if (class_exists('Memcache') ) {5267 } else if (class_exists('Memcache') && ($value)) { 5266 5268 // flush memcache 5267 5269 $memcache_obj = new Memcache; -
clinicalwp-core/trunk/README.txt
r2127527 r2128679 8 8 Tested up to: 5.2.2 9 9 Requires PHP: 5.0 10 Version: 0.9. 811 Stable tag: 0.9. 810 Version: 0.9.9 11 Stable tag: 0.9.9 12 12 License: GPLv3 13 13 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 131 131 132 132 == 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 144 137 145 138 … … 150 143 151 144 Click \"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 152 146 153 147 == Frequently Asked Questions == … … 175 169 176 170 == 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 177 176 = 0.9.7 (Released 2019/07/23) = 178 177 * Minor fixes
Note: See TracChangeset
for help on using the changeset viewer.