Plugin Directory

Changeset 1004058


Ignore:
Timestamp:
10/08/2014 07:38:16 PM (11 years ago)
Author:
rhj4
Message:

Fixed several small bugs and tightened integration with RHJ4 Notifications.

Location:
rhj4-diagnostics
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • rhj4-diagnostics/readme.htm

    r996446 r1004058  
    168168screenshot-5.png</p>    <hr>
    169169<h3>Changelog</h3>
     170<h4>1.22</h4>
     171<p>Fixed several small bugs.</p>
     172
    170173<h4>1.21</h4>
    171174<p>Removed restriction that required admin rights in order to run demo shortcode.</p>
  • rhj4-diagnostics/readme.txt

    r996446 r1004058  
    103103   
    104104== Changelog ==
     105
     106= 1.22 =
     107
     108Fixed several small bugs.
    105109
    106110= 1.21 =
  • rhj4-diagnostics/rhj4_diagnostics.php

    r996446 r1004058  
    44Plugin URI: http://bellinghamwordpressdevelopers.com/demonstrations/
    55Description: Generates diagnostic message on browser console and in php error_log (if defined).
    6 Version: 1.21
     6Version: 1.22
    77Author: Bob Jones
    88Author Email: bob@rhj4.com
     
    816816        }
    817817       
    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'];
    822822       
    823823        //
     
    850850            $newmsg = '';
    851851            if (strlen($source) > 0) {
    852 //                $newmsg .= print_r($source, true);
     852                $newmsg .= print_r($source.": ", true);
    853853            }
    854854            $message = $newmsg.$message;
Note: See TracChangeset for help on using the changeset viewer.