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

PHP notices on jump-menu view display #23

Closed jenlampton closed 9 years ago

jenlampton commented 9 years ago

I get the following error when trying to use a view with jump-menu display style: Notice: Array to string conversion in backdrop/themes/radix/templates/view/views-view.tpl.php on line 55

jenlampton commented 9 years ago

In Radix, those lines are as follows...

    <div class="view-content">
      <?php print $rows; ?>
    </div>

In Backdrop, they are like this instead...

    <div class="view-content">
      <?php print (is_array($rows)) ? backdrop_render($rows) : $rows; ?>
    </div>