• In the “Edit Events” screen, the tooltip for the subject of an event reads “Edit ?Subject?”… the question marks are a strange character surrounding the subject.

    In FormOverview.php on 319, there seemed to be an extra pair of those special quotes (forget what they are called) that don’t encode well. I just removed them and it reads perfectly now.

    BEFORE
    //title="<?php _e('Edit', fsCalendar::$plugin_textdom); ?> “<?php echo esc_attr($e->subject); ?>”"

    AFTER
    //title="<?php _e('Edit', fsCalendar::$plugin_textdom); ?> <?php echo esc_attr($e->subject); ?>"

    … small fix but it looks better now.

    http://wordpress.org/extend/plugins/wp-calendar/

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

    (@faebu)

    hi bmsorg

    i have fixed that in the current version 1.1.4. Thanks for your help.

    Cheers!

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP Calendar] Small fix for quotes in FormOverview.php on 319’ is closed to new replies.