Changeset 2063034
- Timestamp:
- 04/04/2019 01:24:05 PM (7 years ago)
- Location:
- developer-tool
- Files:
-
- 20 added
- 3 edited
-
LICENSE (added)
-
developer-tool.php (added)
-
inc (added)
-
inc/functions.php (added)
-
inc/settings.php (added)
-
inc/style.css (added)
-
readme.txt (added)
-
tags/1.0.2 (added)
-
tags/1.0.2/LICENSE (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/style.css (added)
-
tags/1.0.2/classes (added)
-
tags/1.0.2/classes/class-dev-tool.php (added)
-
tags/1.0.2/developer-tool.php (added)
-
tags/1.0.2/includes (added)
-
tags/1.0.2/includes/functions.php (added)
-
tags/1.0.2/includes/settings.php (added)
-
tags/1.0.2/languages (added)
-
tags/1.0.2/languages/dev-tool.pot (added)
-
tags/1.0.2/readme.txt (added)
-
trunk/classes/class-dev-tool.php (modified) (1 diff)
-
trunk/developer-tool.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
developer-tool/trunk/classes/class-dev-tool.php
r2062374 r2063034 137 137 $classes = ''; 138 138 139 if ( file_exists( get_home_path() . 'wp-content/debug.log' ) && 0 !== filesize ( get_home_path() . 'wp-content/debug.log' ) ) { 140 $classes = 'highlight_error'; 141 } else { 142 $classes = 'no_error'; 139 if( is_callable( 'get_home_path' ) ) { 140 if ( file_exists( get_home_path() . 'wp-content/debug.log' ) && 0 !== filesize ( get_home_path() . 'wp-content/debug.log' ) ) { 141 $classes = 'highlight_error'; 142 } else { 143 $classes = 'no_error'; 144 } 143 145 } 144 146 -
developer-tool/trunk/developer-tool.php
r2062374 r2063034 3 3 Plugin Name: Developer Tool 4 4 Description: Developer Tool helps you to <strong> debug your working environment</strong>. It shows you notices / warnings / errors which may cause during development or beacuse of conflicts. 5 Version: 1.0. 15 Version: 1.0.2 6 6 Author: Navanath Bhosale 7 7 Author URI: https://profiles.wordpress.org/navanathbhosale/profile/ … … 15 15 16 16 if ( ! defined( 'DEV_TOOL_PLUGIN_VERSION' ) ) { 17 define( 'DEV_TOOL_PLUGIN_VERSION', '1.0. 1' );17 define( 'DEV_TOOL_PLUGIN_VERSION', '1.0.2' ); 18 18 } 19 19 -
developer-tool/trunk/readme.txt
r2062375 r2063034 49 49 = 1.0.1 = 50 50 - Fixed: PHP warning for textdomain folder location 51 52 = 1.0.2 = 53 - Fixed: PHP warning for get_home_path function
Note: See TracChangeset
for help on using the changeset viewer.