- Status changed to Fixed
over 1 year ago 6:21am 2 October 2023 Automatically closed - issue fixed for 2 weeks with no activity.
Error message:
Warning: htmlspecialchars() expects parameter 1 to be string, array given in Drupal\Component\Utility\Html::escape() (line 424 of core/lib/Drupal/Component/Utility/Html.php).
Drupal\Component\Utility\Html::escape(Array) (Line: 213)
Drupal\views\Plugin\views\HandlerBase->sanitizeValue(Array) (Line: 1129)
Drupal\views\Plugin\views\field\FieldPluginBase->render(Object) (Line: 1158)
Drupal\views\Plugin\views\field\FieldPluginBase->advancedRender(Object) (Line: 238)
template_preprocess_views_view_field(Array, 'views_view_field', Array)
Add a tally field to a view and for "Multiple field settings" select something other than "Simple aggregate count" or "Individual count per item".
The ::getValue function for AggregateField handles "Simple aggregate count" and "Individual count per item". For the purposes of these options we didn't need an advanced render. This function should have a passthrough though to allow rendering for other options like "Ordered list".
If something like "Ordered list" is selected, then the return from ::getValue will be an array, not a string. The AggregateField::render()
method should check to see if it's an array, and pass it to $this->renderItems, (which is what advancedRender basically would do), or sanitize the value. (though this could be unnecessary)
The base of the field is the target_id, so when parent::getValue($values, $field) is called, it will use that instead of the count. The easiest way to ensure we use the count is to just force parent::getValue($values, 'count')
as the passthrough for the ::getValue override.
Testing
None
None
None
Fixed
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.