backdrop-contrib / radix

A responsive base theme with Bootstrap and Sass for Backdrop CMS.
http://docs.radixtheme.org
GNU General Public License v2.0
4 stars 2 forks source link

Array to string conversion in views-view.tpl.php #16

Closed jenlampton closed 9 years ago

jenlampton commented 9 years ago

When rendering a view, I get

Notice: Array to string conversion in include() (line 30 of /backdrop/themes/radix/templates/view/views-view.tpl.php).

because $classes is now an array. Correct code should be

<div class="<?php print implode(' ', $classes); ?>">

Looks like the same mistakes are in the other views templates, should be a quick cleanup!