Plugin Directory

Changeset 1807617


Ignore:
Timestamp:
01/23/2018 04:27:16 AM (8 years ago)
Author:
davejesch
Message:
  • Fix typo in plugin name in readme (Thanks Dave C.)
Location:
fix-windows-compatibility
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • fix-windows-compatibility/trunk/readme.txt

    r1650692 r1807617  
    1 === Windows Compatability Fix ===
     1=== Windows Compatibility Fix ===
    22Contributors: serverpress, spectromtech, davejesch, Steveorevo
    33Donate link: http://serverpress.com
    44Tags: windows, upgrade, update, plugin, theme, long filename, create, directory, error, desktopserver, edd
    55Requires at least: 4.0
    6 Tested up to: 4.7.3
     6Tested up to: 4.9
    77Stable tag: trunk
    88License: GPLv2 or later
     
    5656
    5757== Changelog ==
     58= 1.0.1 - Jan 22, 2017 =
     59* Fix typo in plugin name in readme (Thanks Dave C.)
     60
    5861= 1.0.0 - May 3, 2017 =
    59 Initial release to WordPress repository.
     62* Initial release to WordPress repository.
    6063
    6164= 1.0.0 - Mar 29, 2017 =
  • fix-windows-compatibility/trunk/windows-compatibility-fix.php

    r1650692 r1807617  
    44Plugin URL: https://serverpress.com/plugins/windows-compatibility-fix
    55Description: Fixes long filename problem on Windows systems when doing updates, such as updating from EDD based sites.
    6 Version: 1.0.0
     6Version: 1.0.1
    77Author: Dave Jesch
    88Author URI: http://serverpress.com
     
    4343self::_debug( 'filter_unique_filename() long file name: ' . $filename );
    4444self::_debug( ' ext=[' . $ext . ']  dir=[' . $dir . ']' );
    45                 $file = tempnam( $dir, 'wpu' );     // creates a new, guaranteed unique filename with 'wpu' prefix
     45                $file = tempnam( $dir, 'wcf' );     // creates a new, guaranteed unique filename with 'wcf' prefix
    4646self::_debug( ' file=' . $file );
    4747                @unlink( $file );                   // remove the file, since we're changing the name by adding an extension
     
    6060         * Used to signal the filter_unique_filename() method to modify the filename if it's too long
    6161         * @param boolean $result Result value.
    62          * @param  string $package The package URL.
     62         * @param string $package The package URL.
    6363         * @param WP_Upgrade $wp_upgrader The instance of the WP_Upgrader class calling this filter
    6464         * @return boolean The unmodified $result value.
Note: See TracChangeset for help on using the changeset viewer.