Changeset 2327028
- Timestamp:
- 06/18/2020 08:13:51 PM (6 years ago)
- Location:
- shibboleth/tags/2.2.1
- Files:
-
- 4 copied
-
. (copied) (copied from shibboleth/trunk)
-
options-admin.php (copied) (copied from shibboleth/trunk/options-admin.php)
-
readme.txt (copied) (copied from shibboleth/trunk/readme.txt) (2 diffs)
-
shibboleth.php (copied) (copied from shibboleth/trunk/shibboleth.php) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shibboleth/tags/2.2.1/readme.txt
r2326062 r2327028 4 4 Requires at least: 3.3 5 5 Tested up to: 5.4.2 6 Stable tag: 2.2 6 Stable tag: 2.2.1 7 7 8 8 Allows WordPress to externalize user authentication and account creation to a Shibboleth Service Provider. … … 187 187 188 188 == Changelog == 189 = version 2.2.1 (2020-06-18) = 190 - Temporarily reverts <IfModule> conditional for .htaccess due to [reported issues with cPanel environments](https://github.com/michaelryanmcneill/shibboleth/issues/64). 191 189 192 = version 2.2 (2020-06-17) = 190 193 - Implementing <IfModule> conditional for .htaccess to protect against the Shibboleth Apache module not being installed; [thanks to @jrchamp for reporting](https://github.com/michaelryanmcneill/shibboleth/issues/60). -
shibboleth/tags/2.2.1/shibboleth.php
r2326062 r2327028 902 902 if ( got_mod_rewrite() && ! $disabled ) { 903 903 $htaccess = get_home_path() . '.htaccess'; 904 $rules = array( ' <IfModule mod_shib>','AuthType shibboleth', 'Require shibboleth','</IfModule>' );904 $rules = array( 'AuthType shibboleth', 'Require shibboleth' ); 905 905 insert_with_markers( $htaccess, 'Shibboleth', $rules ); 906 906 }
Note: See TracChangeset
for help on using the changeset viewer.