Plugin Directory

Changeset 960428


Ignore:
Timestamp:
08/05/2014 11:54:02 AM (12 years ago)
Author:
samface
Message:

urgent write permissions fix

Location:
angry-creative-logger/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • angry-creative-logger/trunk/plugin.php

    r958566 r960428  
    44Plugin URI: http://angrycreative.se
    55Description: Inspects and logs possible issues with your Wordpress installation.
    6 Version: 0.5.2
     6Version: 0.5.3
    77Author: Robin Björklund, Sammy Nordström, Angry Creative AB
    88*/
    99
    10 define( 'ACI_PLUGIN_VERSION', '0.5.2' );
     10define( 'ACI_PLUGIN_VERSION', '0.5.3' );
    1111
    1212define( 'ACI_PLUGIN_DIR', dirname( __FILE__ ) );
  • angry-creative-logger/trunk/readme.txt

    r958566 r960428  
    44Requires at least: 3.0.1
    55Tested up to: 3.9.1
    6 Stable tag: 0.5.2
     6Stable tag: 0.5.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • angry-creative-logger/trunk/routines/write_permissions.php

    r958135 r960428  
    101101                if ( "/*" == $folder && in_array( "/*", self::$_options['allowed_dirs'] ) ) {
    102102                    $allowed_dir = true;
    103                 } else if ( empty( $folder_base ) || false != strpos( $file_path, $folder_base ) ) {
     103                } else if ( !empty( $folder_base ) && false !== strpos( $file_path, $folder_base ) ) {
    104104                    $allowed_dir = true;
    105105                }
Note: See TracChangeset for help on using the changeset viewer.