Changeset 839033
- Timestamp:
- 01/15/2014 01:28:53 PM (12 years ago)
- Location:
- angry-creative-logger/trunk
- Files:
-
- 3 edited
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
routines.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
angry-creative-logger/trunk/plugin.php
r839002 r839033 4 4 Plugin URI: http://angrycreative.se 5 5 Description: Inspects and logs possible issues with your Wordpress installation. 6 Version: 0.3 6 Version: 0.3.1 7 7 Author: Robin Björklund, Sammy Nordström, Angry Creative AB 8 8 */ -
angry-creative-logger/trunk/readme.txt
r839002 r839033 4 4 Requires at least: 3.0.1 5 5 Tested up to: 3.8 6 Stable tag: 0.3 6 Stable tag: 0.3.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 == Changelog == 23 23 24 = 0.3 =24 = 0.3.x = 25 25 * Completely rewritten sources abstracting settings and inspection routines 26 26 * Possible to override default log levels on inspection routines -
angry-creative-logger/trunk/routines.php
r839003 r839033 46 46 } catch ( Exception $e ) { 47 47 48 returnAC_Inspector::log($e->getMessage(), __FUNCTION__);48 AC_Inspector::log($e->getMessage(), __FUNCTION__); 49 49 50 50 } … … 92 92 93 93 if($file_created) { 94 returnAC_Inspector::log('Was able to create a file in `/' . $folder . '` despite DISALLOW_FILE_MODS being set to true. Check your file permissions.', __FUNCTION__);94 AC_Inspector::log('Was able to create a file in `/' . $folder . '` despite DISALLOW_FILE_MODS being set to true. Check your file permissions.', __FUNCTION__); 95 95 } 96 96 … … 98 98 99 99 if(!$file_created){ 100 returnAC_Inspector::log('Was not able to create a file in `/' . $folder . '`. Check your file permissions.', __FUNCTION__);100 AC_Inspector::log('Was not able to create a file in `/' . $folder . '`. Check your file permissions.', __FUNCTION__); 101 101 } 102 102 … … 129 129 if ( !$visible ) { 130 130 131 returnAC_Inspector::log('Site '.$site_blog_id.' is not visible to search engines.', __FUNCTION__);131 AC_Inspector::log('Site '.$site_blog_id.' is not visible to search engines.', __FUNCTION__); 132 132 133 133 } … … 144 144 if ( !$visible ) { 145 145 146 returnAC_Inspector::log('The site is not visible to search engines.', __FUNCTION__);146 AC_Inspector::log('The site is not visible to search engines.', __FUNCTION__); 147 147 148 148 }
Note: See TracChangeset
for help on using the changeset viewer.