WP plugin Calendarの日本語入力でラー
WordPress › Calendar « WordPress Plugins
をつかったとき、Event Titleで日本語入力すると下記のエラーが出る。
The event title must be between 1 and 30 characters in length and contain no punctuation. Spaces are allowed but the title must not start with one.
下記のエラー該当部分をコメントアウトして、$title_ok=1;
をむき出しにするとエラーが出なくなる
// The title must be at least one character in length and no more than 30 - no non-standard characters allowed
/* if (preg_match('/^[a-zA-Z0-9]{1}[a-zA-Z0-9[:space:]]{0,29}$/',$title))
{ <em>/
$title_ok =1;
/</em> }
else
<div class="error"><p><strong><?php _e('Error','calendar'); ?>:</strong> <?php _e('The event title must be between 1 and 30 characters in length and contain no punctuation. Spaces are allowed but the title must not start with one.','calendar'); ?></p></div></p>
<pre><code> }
{ */
</code></pre>
<p>