Plugin Directory

Changeset 3226953


Ignore:
Timestamp:
01/22/2025 03:47:41 PM (11 months ago)
Author:
madalin.ungureanu
Message:

tagging version 1.2.0

Location:
client-portal
Files:
11 added
2 edited

Legend:

Unmodified
Added
Removed
  • client-portal/trunk/index.php

    r2868706 r3226953  
    44 * Plugin URI: http://www.cozmoslabs.com/
    55 * Description:  Build a company site with a client portal where clients login and see a restricted-access, personalized page of content with links and downloads.
    6  * Version: 1.1.9
     6 * Version: 1.2.0
    77 * Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian
    88 * Author URI: http://www.cozmoslabs.com
     
    4141    {
    4242        $this->slug = 'cp-options';
    43         $this->options = get_option( $this->slug );
     43        $this->options = get_option( $this->slug, array() );
    4444        $this->defaults = array(
    4545                                'page-slug' => 'private-page',
     
    277277            return;
    278278
    279         if( current_user_can( 'manage_options' ) )
     279        if( current_user_can( apply_filters( 'cp_redirect_private_pages_capability', 'manage_options' ) ) )
    280280            return;
    281281
  • client-portal/trunk/readme.txt

    r2868706 r3226953  
    44Tags: client portal, private user page, private pages, private content, private client page, user restricted content
    55Requires at least: 3.1
    6 Tested up to: 6.1.1
    7 Stable tag: 1.1.9
     6Tested up to: 6.7.1
     7Stable tag: 1.2.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3737
    3838== Changelog ==
     39= 1.1.9 =
     40* Fix: A PHP warning appearing in some cases
     41* Added a new filter: cp_redirect_private_pages_capability
     42
    3943= 1.1.9 =
    4044* Fix: CSRF issue with Generate Private Pages option. Thanks to Rio Darmawan
Note: See TracChangeset for help on using the changeset viewer.