Hi,

i have a working view with a simple Taxonomy Arguments, if i add a Sort criteria (Node: Post date) and push the Update Button i get a WhiteScreen.

$view = new view;
$view->name = 'culture';
$view->description = '';
$view->tag = '';
$view->view_php = '';
$view->base_table = 'node';
$view->is_cacheable = '0';
$view->api_version = 2;
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
$handler = $view->new_display('default', 'Defaults', 'default');
$handler->override_option('sorts', array(
'created' => array(
'order' => 'ASC',
'granularity' => 'second',
'id' => 'created',
'table' => 'node',
'field' => 'created',
'relationship' => 'none',
),
'created_1' => array(
'order' => 'ASC',
'granularity' => 'second',
'id' => 'created_1',
'table' => 'node',
'field' => 'created',
'relationship' => 'none',
),
'created_2' => array(
'order' => 'ASC',
'granularity' => 'second',
'id' => 'created_2',
'table' => 'node',
'field' => 'created',
'relationship' => 'none',
),
'created_3' => array(
'order' => 'ASC',
'granularity' => 'second',
'id' => 'created_3',
'table' => 'node',
'field' => 'created',
'relationship' => 'none',
),
));
$handler->override_option('arguments', array(
'tid' => array(
'id' => 'tid',
'table' => 'term_node',
'field' => 'tid',
'default_action' => 'ignore',
'style_plugin' => 'default_summary',
'style_options' => array(
'count' => TRUE,
'override' => FALSE,
'items_per_page' => 25,
),
'wildcard' => 'all',
'wildcard_substitution' => 'All',
'title' => '',
'default_argument_type' => 'fixed',
'default_argument' => '',
'validate_type' => 'none',
'validate_fail' => 'not found',
'break_phrase' => 0,
'add_table' => 0,
'relationship' => 'none',
'default_argument_fixed' => '',
'default_argument_php' => '',
'validate_argument_node_type' => array(
'image' => 0,
'poll' => 0,
'forum' => 0,
'page' => 0,
'story' => 0,
),
'validate_argument_php' => '',
'require_value' => 0,
'reduce_duplicates' => 0,
),
));
$handler->override_option('filters', array(
'tid' => array(
'id' => 'tid',
'table' => 'term_node',
'field' => 'tid',
'operator' => 'or',
'value' => array(
'25' => '25',
'29' => '29',
'27' => '27',
'28' => '28',
'26' => '26',
),
'group' => 0,
'exposed' => FALSE,
'expose' => array(
'operator' => FALSE,
'label' => '',
),
'type' => 'select',
'vid' => '1',
'relationship' => 'none',
'expose_button' => array(
'button' => 'Expose',
),
'reduce_duplicates' => 1,
),
));
$handler->override_option('access', array(
'type' => 'role',
'role' => array(
'1' => 1,
'2' => 2,
),
'perm' => 'report abuse',
));
$handler->override_option('row_plugin', 'node');
$handler->override_option('row_options', array(
'teaser' => 1,
'links' => 1,
));
$handler = $view->new_display('page', 'Page', 'page');
$handler->override_option('path', 'culture');
$handler->override_option('menu', array(
'type' => 'none',
'title' => '',
'weight' => 0,
));
$handler->override_option('tab_options', array(
'type' => 'none',
'title' => '',
'weight' => 0,
));

Is this a known Bug, i dont find it in the current issues.

best,

melwin

Comments

merlinofchaos’s picture

Hmm. Oddly, I don't reproduce this. If you get a white screen, that's especially odd, as it indicates some sort of javascript problem, possibly.

Does firefox show any errors with the javascript console?

Does your http/php error log show any errors indicating what the whitescreen might be?

jdc32’s picture

crazy, now it works. i havent chance anything.

close.

merlinofchaos’s picture

Status: Active » Closed (fixed)