Changeset 960428
- Timestamp:
- 08/05/2014 11:54:02 AM (12 years ago)
- Location:
- angry-creative-logger/trunk
- Files:
-
- 3 edited
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
routines/write_permissions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
angry-creative-logger/trunk/plugin.php
r958566 r960428 4 4 Plugin URI: http://angrycreative.se 5 5 Description: Inspects and logs possible issues with your Wordpress installation. 6 Version: 0.5. 26 Version: 0.5.3 7 7 Author: Robin Björklund, Sammy Nordström, Angry Creative AB 8 8 */ 9 9 10 define( 'ACI_PLUGIN_VERSION', '0.5. 2' );10 define( 'ACI_PLUGIN_VERSION', '0.5.3' ); 11 11 12 12 define( 'ACI_PLUGIN_DIR', dirname( __FILE__ ) ); -
angry-creative-logger/trunk/readme.txt
r958566 r960428 4 4 Requires at least: 3.0.1 5 5 Tested up to: 3.9.1 6 Stable tag: 0.5. 26 Stable tag: 0.5.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
angry-creative-logger/trunk/routines/write_permissions.php
r958135 r960428 101 101 if ( "/*" == $folder && in_array( "/*", self::$_options['allowed_dirs'] ) ) { 102 102 $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 ) ) { 104 104 $allowed_dir = true; 105 105 }
Note: See TracChangeset
for help on using the changeset viewer.