Plugin Directory

Changeset 3317811


Ignore:
Timestamp:
06/25/2025 05:38:55 PM (8 months ago)
Author:
arstudios
Message:

Constellation Client Portal release 2.1.1.

Location:
constellation-client-portal
Files:
132 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • constellation-client-portal/trunk/README.txt

    r3305015 r3317811  
    55Requires at least: 6.0.0
    66Tested up to: 6.8
    7 Stable tag: 2.1.0
     7Stable tag: 2.1.1
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    210210
    211211== Changelog ==
     212= 2.1.1 (Pro) - 2025-6-25 =
     213* Update: All core updates.
     214
     215= 2.1.1 (Core) - 2025-6-25 =
     216* Fix: Fixed issue from preventing the title from being displayed in the accp_my_company_page shortcode output.
     217
    212218= 2.1.0 (Pro) - 2025-6-2 =
    213219* Update: Added warning to data management settings that delete file or data when enabled.
  • constellation-client-portal/trunk/ars-constellation-client-portal.php

    r3305015 r3317811  
    77 * Plugin URI:        https://adrianrodriguezstudios.com/constellation-client-portal/
    88 * Description:       Create private pages for each of your clients, post private files, and protect your client files from unauthorized users and search engines.  <strong>Important:</strong> All Site-level File Protection features will cease to function if the plugin is disabled or uninstalled.
    9  * Version:           2.1.0
     9 * Version:           2.1.1
    1010 * Author:            ARS
    1111 * Author URI:        https://adrianrodriguezstudios.com
     
    5757     */
    5858    define('ACCP_PLUGIN_NAME', 'ARS_CONSTELLATION_CLIENT_PORTAL');
    59     define('ACCP_PLUGIN_VERSION', '2.1.0'); // Change the version in the header as well.
     59    define('ACCP_PLUGIN_VERSION', '2.1.1'); // Change the version in the header as well.
    6060    define( ACCP_PLUGIN_NAME, ACCP_PLUGIN_VERSION );
    6161    define( 'ACCP_PLUGIN_FILE_NAME', __FILE__ );
  • constellation-client-portal/trunk/public/class-ars-constellation-client-portal-public.php

    r3110365 r3317811  
    122122        $link_text = 'My Home';
    123123
    124         if ( null !== $atts['link_text'] ) {
     124        if ( $atts['link_text'] && ! empty( $atts['link_text'] ) ) {
    125125
    126126            $link_text = $atts['link_text'];
     
    133133        $link_class = null;
    134134
    135         if ( null !== $atts['link_class'] ) {
     135        if ( $atts['link_class'] && ! empty( $atts['link_class'] ) ) {
    136136
    137137            $link_class = $atts['link_class'];
     
    144144        $hide_logged_out = true;
    145145
    146         if ( null !== $atts['hide_logged_out'] ) {
     146        if ( $atts['hide_logged_out'] && ! empty( $atts['hide_logged_out'] ) ) {
    147147
    148148            $hide_logged_out = strtolower( $atts['hide_logged_out'] );
Note: See TracChangeset for help on using the changeset viewer.