About this topic

  • Posted by randy 2 years ago. There are 2 posts. The latest reply is from robfelty.

Tags

  1. If auto-correction is turned on in Outlook, it will capitalize the first character after punctoation or a space. So someone typing tags: will have it changed to Tags:.

    Line 1871 of postie-functions.php from Postie 1.3.1 could benefit from a case insensitive search.

    Orig line:

    if ( preg_match('/tags: ?(.*)\n/', $content, $matches)) {

    New line:

    if ( preg_match('/tags: ?(.*)\n/i', $content, $matches)) {

    This same approach could be used for :start, :end, and others.

    Thanks for the plugin.

  2. Randy,

    Thanks for that suggestion. Auto-correction is evil, but it seems like a good idea to include support for it.

    Rob

RSS feed for this topic

Have you read the FAQ?
Have you tried the latest development version (at the bottom)?

Reply

You must log in to post.