Changeset 1118230
- Timestamp:
- 03/22/2015 07:38:52 PM (11 years ago)
- Location:
- contexture-page-security/trunk
- Files:
-
- 3 edited
-
contexture-page-security.php (modified) (1 diff)
-
core/CTXPS_Security.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contexture-page-security/trunk/contexture-page-security.php
r1117151 r1118230 4 4 Plugin URI: http://www.contextureintl.com/open-source-projects/contexture-page-security-for-wordpress/ 5 5 Description: Allows admins to create user groups and restrict access to sections of the site by group. 6 Version: 1.5.1 26 Version: 1.5.13 7 7 Author: Veraxus, Contexture 8 8 Author URI: http://www.contextureintl.com 9 9 License: GPL2 10 11 Copyright 2015 Contexture Intl. (email : opensource@contextureintl.com) 12 13 This program is free software; you can redistribute it and/or modify 14 it under the terms of the GNU General Public License, version 2, as 15 published by the Free Software Foundation. 16 17 This program is distributed in the hope that it will be useful, 18 but WITHOUT ANY WARRANTY; without even the implied warranty of 19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 GNU General Public License for more details. 21 22 You should have received a copy of the GNU General Public License 23 along with this program; if not, write to the Free Software 24 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 10 25 */ 11 /* Copyright 2013 Contexture Intl. (email : opensource@contextureintl.com)12 26 13 This program is free software; you can redistribute it and/or modify14 it under the terms of the GNU General Public License, version 2, as15 published by the Free Software Foundation.16 17 This program is distributed in the hope that it will be useful,18 but WITHOUT ANY WARRANTY; without even the implied warranty of19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the20 GNU General Public License for more details.21 22 You should have received a copy of the GNU General Public License23 along with this program; if not, write to the Free Software24 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA25 */26 27 /***************************** SET GLOBALS ************************************/ 27 28 /**The absolute local path to the plugin*/ -
contexture-page-security/trunk/core/CTXPS_Security.php
r1117151 r1118230 529 529 //IF FORCE LOGIN.... 530 530 if($plugin_opts['ad_opt_login_anon']==='true'){ 531 //TODO: Problem area for some IIS users - not sure if its possible to fix, clearly an IIS bug 532 wp_safe_redirect(wp_login_url((is_ssl()?'http://':'https://').$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'])); 531 //TODO: Possible problem area for some IIS users - not sure if its possible to fix 532 wp_safe_redirect( wp_login_url( 533 ( is_ssl()?'https://':'http://' ).$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] 534 ) ); 533 535 die(); 534 536 } -
contexture-page-security/trunk/readme.txt
r1117151 r1118230 5 5 Requires at least: 3.3 6 6 Tested up to: 4.2 7 Stable tag: 1.5.1 27 Stable tag: 1.5.13 8 8 9 9 Allows admins to create user membership groups and set access restrictions for any post, page or section. … … 133 133 == Changelog == 134 134 135 = 1.5.13 ( 2015/03/22 ) = 136 * Bug fix. 137 135 138 = 1.5.12 ( 2015/03/20 ) = 136 139 * Maintenance update. Better IIS and CGI support.
Note: See TracChangeset
for help on using the changeset viewer.