1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-08 07:47:00 +02:00

Remove reference to TinyMCE in TextformatterEntities module description per issue processwire/processwire-issues#18

This commit is contained in:
Ryan Cramer
2016-10-05 11:01:36 -04:00
parent e4ecc5f7ba
commit 3619a4e958

View File

@@ -16,7 +16,7 @@ class TextformatterEntities extends Textformatter {
public static function getModuleInfo() {
return array(
'title' => __('HTML Entity Encoder (htmlspecialchars)', __FILE__), // Module Title
'summary' => __("Entity encode ampersands, quotes (single and double) and greater-than/less-than signs using htmlspecialchars(str, ENT_QUOTES). It is recommended that you use this on all text/textarea fields except those using a rich text editor like TinyMCE or a markup language like Markdown.", __FILE__), // Module Summary
'summary' => __("Entity encode ampersands, quotes (single and double) and greater-than/less-than signs using htmlspecialchars(str, ENT_QUOTES). It is recommended that you use this on all text/textarea fields except those using a rich text editor or a markup language like Markdown.", __FILE__), // Module Summary
'version' => 100,
);
}