Plugin Directory

Changeset 1118230


Ignore:
Timestamp:
03/22/2015 07:38:52 PM (11 years ago)
Author:
Veraxus
Message:

1.5.13

Location:
contexture-page-security/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • contexture-page-security/trunk/contexture-page-security.php

    r1117151 r1118230  
    44Plugin URI: http://www.contextureintl.com/open-source-projects/contexture-page-security-for-wordpress/
    55Description: Allows admins to create user groups and restrict access to sections of the site by group.
    6 Version: 1.5.12
     6Version: 1.5.13
    77Author: Veraxus, Contexture
    88Author URI: http://www.contextureintl.com
    99License: GPL2
     10
     11Copyright 2015 Contexture Intl.  (email : opensource@contextureintl.com)
     12
     13This program is free software; you can redistribute it and/or modify
     14it under the terms of the GNU General Public License, version 2, as
     15published by the Free Software Foundation.
     16
     17This program is distributed in the hope that it will be useful,
     18but WITHOUT ANY WARRANTY; without even the implied warranty of
     19MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20GNU General Public License for more details.
     21
     22You should have received a copy of the GNU General Public License
     23along with this program; if not, write to the Free Software
     24Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    1025*/
    11 /*  Copyright 2013 Contexture Intl.  (email : opensource@contextureintl.com)
    1226
    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
    25 */
    2627/***************************** SET GLOBALS ************************************/
    2728/**The absolute local path to the plugin*/
  • contexture-page-security/trunk/core/CTXPS_Security.php

    r1117151 r1118230  
    529529            //IF FORCE LOGIN....
    530530            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                ) );
    533535                die();
    534536            }
  • contexture-page-security/trunk/readme.txt

    r1117151 r1118230  
    55Requires at least: 3.3
    66Tested up to: 4.2
    7 Stable tag: 1.5.12
     7Stable tag: 1.5.13
    88
    99Allows admins to create user membership groups and set access restrictions for any post, page or section.
     
    133133== Changelog ==
    134134
     135= 1.5.13 ( 2015/03/22 ) =
     136* Bug fix.
     137
    135138= 1.5.12 ( 2015/03/20 ) =
    136139* Maintenance update. Better IIS and CGI support.
Note: See TracChangeset for help on using the changeset viewer.