diff --git a/handlers/views_handler_argument.inc b/handlers/views_handler_argument.inc index 8e46bf3..7946bff 100644 --- a/handlers/views_handler_argument.inc +++ b/handlers/views_handler_argument.inc @@ -1071,9 +1071,6 @@ class views_handler_argument extends views_handler { $argument = clone $this; if (!isset($arg) && $argument->has_default_argument()) { $arg = $argument->get_default_argument(); - - // remember that this argument was computed, not passed on the URL. - $this->is_default = TRUE; } // Set the argument, which will also validate that the argument can be set. if ($argument->set_argument($arg)) { diff --git a/includes/view.inc b/includes/view.inc index 90dd3a2..3494233 100644 --- a/includes/view.inc +++ b/includes/view.inc @@ -812,8 +812,6 @@ class view extends views_db_object { if (isset($arg)) { $this->args[$position] = $arg; } - // remember that this argument was computed, not passed on the URL. - $argument->is_default = TRUE; } // Set the argument, which will also validate that the argument can be set. @@ -1585,7 +1583,7 @@ class view extends views_db_object { $position = 0; if (!empty($this->argument)) { foreach ($this->argument as $argument_id => $argument) { - if (!empty($argument->is_default) && !empty($argument->options['default_argument_skip_url'])) { + if (!empty($argument->options['default_argument_skip_url'])) { unset($args[$position]); } $position++;