Plugin Directory

Changeset 2450100


Ignore:
Timestamp:
01/04/2021 07:25:39 PM (5 years ago)
Author:
simplepress
Message:

6.6.2

Location:
simplepress/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • simplepress/trunk/admin/resources/css/spa-admin.css

    r2246613 r2450100  
    18721872    position: relative;
    18731873    float: left;
    1874     width: 30px;
     1874    min-width: 30px;
    18751875    min-height: 30px;
    18761876    margin: 5px 0;
  • simplepress/trunk/readme.txt

    r2384696 r2450100  
    55Tags: forum, wordpress forum, discussion forum, community forum, forums
    66Requires at least: 5.0
    7 Tested up to: 5.5
     7Tested up to: 5.6
    88Requires PHP: 7.0
    9 Stable tag: 6.6.1
     9Stable tag: 6.6.2
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3131Import 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/).
    3232
    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!
     33Need 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).
    3434
    3535> 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/)!
     
    330330== Changelog ==
    331331
     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
    332337= 6.6.1 =
    333338* Fix
  • simplepress/trunk/sp-api/sp-api-class-spcuser.php

    r2378390 r2450100  
    707707
    708708        # 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;
    710710        switch ($option) {
    711711            case 'spreassign':
     
    726726                # if any topics are now empty of posts, lets remove the topic and update the forum
    727727                if (!empty($topics)) {
     728
     729                    require_once SP_PLUGIN_DIR.'/forum/database/sp-db-management.php';
    728730                    foreach ($topics as $topic) {
    729731                        $posts = SP()->DB->table(SPPOSTS, "topic_id=$topic->topic_id");
  • simplepress/trunk/sp-control.php

    r2384696 r2450100  
    1010 * Plugin Name:         Simple:Press
    1111 * Plugin URI:          https://simple-press.com
    12  * Version:             6.6.1
     12 * Version:             6.6.2
    1313 * Description:         The most versatile and feature-rich forums plugin for WordPress
    1414 * Author:              The Simple:Press Team
     
    341341            # version and system control constants
    342342            define('SPPLUGNAME', 'Simple:Press');
    343             define('SPVERSION', '6.6.1');
     343            define('SPVERSION', '6.6.2');
    344344                       
    345345            define('SP_SCRIPTS_VERSION', (defined('SP_SCRIPTS_DEBUG') && SP_SCRIPTS_DEBUG) ? SPVERSION . '.' . time() : SPVERSION);
    346346                       
    347             define('SPBUILD', 15870);
     347            define('SPBUILD', 15871);
    348348            define('SPSILENT', 15865);
    349349            define('SPRELEASE', 'Release');
  • simplepress/trunk/sp-startup/install/sp-upgrade.php

    r2384696 r2450100  
    437437}
    438438
     439# Start of Upgrade Routines - 6.6.2 ============================================================
     440$section = 15871;
     441if ($build < $section) {
     442    // blank upgrade...
     443    sp_response($section);
     444}
     445
    439446# ****** IMPORTANT: THE FINAL $section values MUST be the same as the SPBUILD constant
    440447# ******            for the Upgrade to complete correctly
Note: See TracChangeset for help on using the changeset viewer.