Changeset 1004058
- Timestamp:
- 10/08/2014 07:38:16 PM (11 years ago)
- Location:
- rhj4-diagnostics
- Files:
-
- 1 added
- 3 edited
-
readme.htm (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
rhj4_diagnostic_settings.php (added)
-
rhj4_diagnostics.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rhj4-diagnostics/readme.htm
r996446 r1004058 168 168 screenshot-5.png</p> <hr> 169 169 <h3>Changelog</h3> 170 <h4>1.22</h4> 171 <p>Fixed several small bugs.</p> 172 170 173 <h4>1.21</h4> 171 174 <p>Removed restriction that required admin rights in order to run demo shortcode.</p> -
rhj4-diagnostics/readme.txt
r996446 r1004058 103 103 104 104 == Changelog == 105 106 = 1.22 = 107 108 Fixed several small bugs. 105 109 106 110 = 1.21 = -
rhj4-diagnostics/rhj4_diagnostics.php
r996446 r1004058 4 4 Plugin URI: http://bellinghamwordpressdevelopers.com/demonstrations/ 5 5 Description: Generates diagnostic message on browser console and in php error_log (if defined). 6 Version: 1.2 16 Version: 1.22 7 7 Author: Bob Jones 8 8 Author Email: bob@rhj4.com … … 816 816 } 817 817 818 $source = $ current_options['source'];819 $output = $ current_options['output'];820 $logfile = $ current_options['logfile'];821 $enabled = $ current_options['enabled'];818 $source = $options['source']; 819 $output = $options['output']; 820 $logfile = $options['logfile']; 821 $enabled = $options['enabled']; 822 822 823 823 // … … 850 850 $newmsg = ''; 851 851 if (strlen($source) > 0) { 852 // $newmsg .= print_r($source, true);852 $newmsg .= print_r($source.": ", true); 853 853 } 854 854 $message = $newmsg.$message;
Note: See TracChangeset
for help on using the changeset viewer.