Viewing 1 replies (of 1 total)
  • Plugin Author codestyling

    (@codestyling)

    This is a bug within the message generation only, the function of plugin and also Guard works as expected, because the message will be created using an ajax call.
    I’ve scheduled an update very soon, if you want it get working sooner, than you can replace for now following lines (2342 and 2343):

    <?php _e('Name:',CSP_PO_TEXTDOMAIN);?> <strong><?php echo $ct['Name']; ?></strong> |
    <?php _e('Author:',CSP_PO_TEXTDOMAIN);?> <strong><?php echo $ct['Author']; ?></strong><br/>

    with this lines:

    <?php _e('Name:',CSP_PO_TEXTDOMAIN);?> <strong><?php echo $ct->name; ?></strong> |
    <?php _e('Author:',CSP_PO_TEXTDOMAIN);?> <strong><?php echo $ct->author; ?></strong><br/>

    This fix will be contained at version 1.99.22 comming soon.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Codestyling Localization] WP_DEBUG errors triggering scriptguard’ is closed to new replies.