• JS Morisset

    (@jsmoriss)


    FYI – I’m seeing the following errors in my logs:

    HP Notice: A non well formed numeric value encountered in /…/wordpress/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 118

    js.

Viewing 1 replies (of 1 total)
  • Thread Starter JS Morisset

    (@jsmoriss)

    FYI – line 118:

    
    $toolbar_height = $font_size * 1.5 . 'px !important;';
    

    The value of $font_size is “14px !important;”, so obviously you can’t multiply that. ??

    I’m guessing that what you meant to write is (notice the extra underscore):

    
    $toolbar_height = $_font_size * 1.5 . 'px !important;';
    

    js.

Viewing 1 replies (of 1 total)
  • The topic ‘A non well formed numeric value encountered’ is closed to new replies.