1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-11 01:04:16 +02:00

Improve support for Field tags by adding a new "Manage Tags" button at the bottom of the fields list screen, enabling you to add or remove fields to/from tags. In addition tags can now be used in $pages->find() searches, i.e. $pages->find("my_tag%=something"); would search all fields in the "my_tag" collection.

This commit is contained in:
Ryan Cramer
2018-06-13 15:31:55 -04:00
parent a465fab672
commit bd35c02e81
8 changed files with 558 additions and 102 deletions

View File

@@ -657,6 +657,7 @@ abstract class AdminThemeFramework extends AdminTheme {
// unencode + re-encode entities, just in case module already entity some or all of output
if(strpos($text, '&') !== false) $text = $this->sanitizer->unentities($text);
$text = $this->sanitizer->entities($text);
$text = nl2br($text);
}
if($notice instanceof NoticeError) {