Changeset 3226953
- Timestamp:
- 01/22/2025 03:47:41 PM (11 months ago)
- Location:
- client-portal
- Files:
-
- 11 added
- 2 edited
-
tags/1.2.0 (added)
-
tags/1.2.0/assets (added)
-
tags/1.2.0/assets/logo_landing_pb_2x_red.png (added)
-
tags/1.2.0/assets/style-editor.css (added)
-
tags/1.2.0/assets/style.css (added)
-
tags/1.2.0/index.php (added)
-
tags/1.2.0/readme.txt (added)
-
tags/1.2.0/screenshot-1.png (added)
-
tags/1.2.0/screenshot-2.png (added)
-
tags/1.2.0/screenshot-3.png (added)
-
tags/1.2.0/screenshot-4.png (added)
-
trunk/index.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
client-portal/trunk/index.php
r2868706 r3226953 4 4 * Plugin URI: http://www.cozmoslabs.com/ 5 5 * 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.96 * Version: 1.2.0 7 7 * Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian 8 8 * Author URI: http://www.cozmoslabs.com … … 41 41 { 42 42 $this->slug = 'cp-options'; 43 $this->options = get_option( $this->slug );43 $this->options = get_option( $this->slug, array() ); 44 44 $this->defaults = array( 45 45 'page-slug' => 'private-page', … … 277 277 return; 278 278 279 if( current_user_can( 'manage_options') )279 if( current_user_can( apply_filters( 'cp_redirect_private_pages_capability', 'manage_options' ) ) ) 280 280 return; 281 281 -
client-portal/trunk/readme.txt
r2868706 r3226953 4 4 Tags: client portal, private user page, private pages, private content, private client page, user restricted content 5 5 Requires at least: 3.1 6 Tested up to: 6. 1.17 Stable tag: 1. 1.96 Tested up to: 6.7.1 7 Stable tag: 1.2.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 37 37 38 38 == 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 39 43 = 1.1.9 = 40 44 * Fix: CSRF issue with Generate Private Pages option. Thanks to Rio Darmawan
Note: See TracChangeset
for help on using the changeset viewer.