[Plugin: WP Calendar] Small fix for quotes in FormOverview.php on 319
-
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.
Viewing 1 replies (of 1 total)
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.