Hi
The default unformatted view tpl file for views uses a variable named classes (views-view-unformatted.tpl.php).
This is an array of classes for each row, typically an array of the form (views-row views-row-1 views-row-odd views-row-first, views-row views-row-2 views-row-even etc).
The generic preprocess function in ninesixty robots overrides this.
From line 55:

function ninesixtyrobots_preprocess(&$vars, $hook) {
        $vars['classes'] = $hook;
}

Changing this to be slightly more selective (see below) prevents the override for any views template reliant on the classes variable (there are a few):

function ninesixtyrobots_preprocess(&$vars, $hook) {
    if(substr($hook, 0, 4) != 'view') {
        $vars['classes'] = $hook;
    }
}

Comments

add1sun’s picture

Status: Needs review » Fixed

That function has actually been removed in the latest release since it was originally included for demo purposes only. :-)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.