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:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user