Changeset 2450100
- Timestamp:
- 01/04/2021 07:25:39 PM (5 years ago)
- Location:
- simplepress/trunk
- Files:
-
- 5 edited
-
admin/resources/css/spa-admin.css (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
sp-api/sp-api-class-spcuser.php (modified) (2 diffs)
-
sp-control.php (modified) (2 diffs)
-
sp-startup/install/sp-upgrade.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simplepress/trunk/admin/resources/css/spa-admin.css
r2246613 r2450100 1872 1872 position: relative; 1873 1873 float: left; 1874 width: 30px;1874 min-width: 30px; 1875 1875 min-height: 30px; 1876 1876 margin: 5px 0; -
simplepress/trunk/readme.txt
r2384696 r2450100 5 5 Tags: forum, wordpress forum, discussion forum, community forum, forums 6 6 Requires at least: 5.0 7 Tested up to: 5. 57 Tested up to: 5.6 8 8 Requires PHP: 7.0 9 Stable tag: 6.6. 19 Stable tag: 6.6.2 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 31 31 Import data into our forum from other forums including bbPress, Asgaros and others. Get the importer [here](https://simple-press.com/downloads/simple-press-importer-plugin/). 32 32 33 Need to build a member focused site with or without paid subscriptions? We have you covered there too with deep integration into our [Member Manager](https://simple-press.com/simplepress-member-manager/) and [Member Subscriptions](https://simple-press.com/simplepress-paid-member-subscriptions/) plugins!33 Need to build a member focused site with or without paid subscriptions? We have you covered there too with our SaaS [EasyMembershipSites.io](https://easymembershipsites.io). 34 34 35 35 > Go [premium](https://simple-press.com/features/)! Our premium extension will super-charge your forum! [View Simple-Press Forum Premium Pricing Options](https://simple-press.com/simple-press-forums/sp-forums-pricing/)! … … 330 330 == Changelog == 331 331 332 = 6.6.2 = 333 * Fix 334 * G00000: Page number overlap on certain admin screens when the page numbers get to 3 digits. 335 * G00000: When deleting users and choosing the option to delete the user, they now get deleted instead of being set to "guest". 336 332 337 = 6.6.1 = 333 338 * Fix -
simplepress/trunk/sp-api/sp-api-class-spcuser.php
r2378390 r2450100 707 707 708 708 # remove member from core 709 $option = (isset($_POST[' SP()->options->delete'])) ? SP()->filters->str($_POST['SP()->options->delete']) : $delete_option;709 $option = (isset($_POST['sp_delete_option'])) ? SP()->filters->str($_POST['sp_delete_option']) : $delete_option; 710 710 switch ($option) { 711 711 case 'spreassign': … … 726 726 # if any topics are now empty of posts, lets remove the topic and update the forum 727 727 if (!empty($topics)) { 728 729 require_once SP_PLUGIN_DIR.'/forum/database/sp-db-management.php'; 728 730 foreach ($topics as $topic) { 729 731 $posts = SP()->DB->table(SPPOSTS, "topic_id=$topic->topic_id"); -
simplepress/trunk/sp-control.php
r2384696 r2450100 10 10 * Plugin Name: Simple:Press 11 11 * Plugin URI: https://simple-press.com 12 * Version: 6.6. 112 * Version: 6.6.2 13 13 * Description: The most versatile and feature-rich forums plugin for WordPress 14 14 * Author: The Simple:Press Team … … 341 341 # version and system control constants 342 342 define('SPPLUGNAME', 'Simple:Press'); 343 define('SPVERSION', '6.6. 1');343 define('SPVERSION', '6.6.2'); 344 344 345 345 define('SP_SCRIPTS_VERSION', (defined('SP_SCRIPTS_DEBUG') && SP_SCRIPTS_DEBUG) ? SPVERSION . '.' . time() : SPVERSION); 346 346 347 define('SPBUILD', 1587 0);347 define('SPBUILD', 15871); 348 348 define('SPSILENT', 15865); 349 349 define('SPRELEASE', 'Release'); -
simplepress/trunk/sp-startup/install/sp-upgrade.php
r2384696 r2450100 437 437 } 438 438 439 # Start of Upgrade Routines - 6.6.2 ============================================================ 440 $section = 15871; 441 if ($build < $section) { 442 // blank upgrade... 443 sp_response($section); 444 } 445 439 446 # ****** IMPORTANT: THE FINAL $section values MUST be the same as the SPBUILD constant 440 447 # ****** for the Upgrade to complete correctly
Note: See TracChangeset
for help on using the changeset viewer.