Changeset 3133796
- Timestamp:
- 08/11/2024 05:13:25 PM (19 months ago)
- Location:
- custom-php-settings/trunk
- Files:
-
- 7 edited
-
bootstrap.php (modified) (1 diff)
-
changelog.txt (modified) (1 diff)
-
freemius/start.php (modified) (1 diff)
-
freemius/templates/account.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
src/Backend/Backend.php (modified) (1 diff)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-php-settings/trunk/bootstrap.php
r3129735 r3133796 5 5 * Plugin URI: https://wordpress.org/plugins/custom-php-settings/ 6 6 * Description: Customize PHP settings. 7 * Version: 2.1. 48 * Requires at least: 3.1.07 * Version: 2.1.5 8 * Requires at least: 4.1.0 9 9 * Requires PHP: 5.6 10 10 * Author: Cyclonecode -
custom-php-settings/trunk/changelog.txt
r3129735 r3133796 1 = 2.1.4 2 3 - Update: Check so mod_env is loaded. 4 1 5 = 2.1.3 2 6 -
custom-php-settings/trunk/freemius/start.php
r3117751 r3133796 16 16 * @var string 17 17 */ 18 $this_sdk_version = '2.7. 3';18 $this_sdk_version = '2.7.4'; 19 19 20 20 #region SDK Selection Logic -------------------------------------------------------------------- -
custom-php-settings/trunk/freemius/templates/account.php
r3078372 r3133796 511 511 <tr class="fs-field-<?php echo esc_attr( $p['id'] ) ?><?php if ( $odd ) : ?> alternate<?php endif ?>"> 512 512 <td> 513 <nobr><?php echo esc_ attr( $p['title'] ) ?><?php echo ( ! empty( $p['title'] ) ) ? ':' : '' ?></nobr>513 <nobr><?php echo esc_html( $p['title'] ) ?><?php echo ( ! empty( $p['title'] ) ) ? ':' : '' ?></nobr> 514 514 </td> 515 515 <td<?php if ( 'plan' === $p['id'] || 'bundle_plan' === $p['id'] ) { echo ' colspan="2"'; }?>> -
custom-php-settings/trunk/readme.txt
r3129735 r3133796 3 3 Donate link: https://www.buymeacoffee.com/cyclonecode 4 4 Tags: php, htaccess, settings, apache, apache2 5 Requires at least: 3.1.05 Requires at least: 4.1.0 6 6 Tested up to: 6.6.1 7 7 Requires PHP: 5.6 8 Stable tag: 2.1. 48 Stable tag: 2.1.5 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 In the premium version, when running PHP as an apache module and using an **.htaccess** file for configuration, you are able 68 68 to add custom environment variables. These will be accessible by using the super global **$_SERVER** array. 69 In order for this to work you will need to have the mod_env module enabled in your apache setup. 69 70 70 71 = Resources = … … 125 126 == Changelog == 126 127 127 = 2.1. 4128 = 2.1.5 128 129 129 - Update: Check so mod_env is loaded.130 - Update: Freemius SDK to 2.7.4. -
custom-php-settings/trunk/src/Backend/Backend.php
r3129735 r3133796 7 7 use function CustomPhpSettings\cps_fs; 8 8 class Backend { 9 const VERSION = '2.1. 4';9 const VERSION = '2.1.5'; 10 10 11 11 const SETTINGS_NAME = 'custom_php_settings'; -
custom-php-settings/trunk/vendor/composer/installed.php
r3129735 r3133796 2 2 'root' => array( 3 3 'name' => 'cyclonecode/custom-php-settings', 4 'pretty_version' => ' dev-master',5 'version' => ' dev-master',6 'reference' => '2a941d27b253c0d26cf724550af6d36004850fc5',4 'pretty_version' => '1.0.0+no-version-set', 5 'version' => '1.0.0.0', 6 'reference' => null, 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'cyclonecode/custom-php-settings' => array( 14 'pretty_version' => ' dev-master',15 'version' => ' dev-master',16 'reference' => '2a941d27b253c0d26cf724550af6d36004850fc5',14 'pretty_version' => '1.0.0+no-version-set', 15 'version' => '1.0.0.0', 16 'reference' => null, 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.