diff --git a/drupalorg_project.module b/drupalorg_project.module
index 806d629..53a697f 100644
--- a/drupalorg_project.module
+++ b/drupalorg_project.module
@@ -1027,3 +1027,68 @@ function drupalorg_project_ctools_plugin_directory($module, $plugin) {
     return "plugins/$plugin";
   }
 }
+
+
+// == Mods for 'Project Applications' issue queue ============================
+
+// - Adding 'created' column to the view display.
+// - Done by creating new views displays, and hardcoding the menu path for
+//   those displays (thus taking precedence over the %argument menu path).
+// - Display definition contained in drupalorg_project.views_default.inc
+
+/**
+ * Implement hook_views_default_views_alter().
+ *
+ * Adds a new display to the 'project_issue_project' view, at the menu path
+ * project/issues/projectapplications.  Since this path takes precedence over
+ * the original view path (project/issues/%pid), we modify the argument
+ * parameter in this display to provide "projectapplications" as a default
+ * argument instead of returning 404 if no argument supplied; and add our
+ * desired 'Age' field to the display.
+ */
+function drupalorg_project_views_default_views_alter(&$views) {
+  $path = drupal_get_path('module', 'drupalorg_project');
+  require_once("$path/drupalorg_project.views_default.inc");
+  _drupalorg_project_views_default_views_alter($views);
+}
+
+/**
+ * Implementation of hook_views_post_render().
+ *
+ * The default for project_issue is to add issue links and arguments only on
+ * the 'page_1' display for a given view.  Because we've added a 'page_2'
+ * view for the projectapplications issue queue, we need to invoke the code
+ * which adds the 'Create new issue', 'Advanced Search', etc. links here as
+ * well.
+ */
+function drupalorg_project_views_post_render(&$view, &$output, &$cache) {
+  $query_link_views = array('project_issue_project', 'project_issue_search_project');
+  if (in_array($view->name, $query_link_views)) {
+    if ($view->current_display == 'page_2') {
+      // We need to set the $arg value to ensure proper title/menu generation.
+      $arg = NULL;
+      if (isset($view->argument['pid'])) {
+        $arg = $view->argument['pid']->get_value();
+      }
+      $output = project_issue_query_result_links($arg) . $output;
+    }
+  }
+}
+
+/**
+ * Implements hook_views_pre_view().
+ *
+ * Minor hack ... but component values were not being datafilled in the new
+ * display due to the missing argument, so we add it.  Also fixes issue links
+ */
+function drupalorg_project_views_pre_view(&$view, &$display_id, &$args) {
+  $affected_uris = array('/project/issues/projectapplications', '/project/issues/search/projectapplications');
+  $affected_views = array('project_issue_project', 'project_issue_search_project');
+  if (in_array(request_uri(), $affected_uris) && in_array($view->name, $affected_views)) {
+    if ($display_id == 'page_2') {
+      $args[0] = 'projectapplications';
+    }
+  }
+}
+
+// == End 'Project Applications' issue queue mods ============================
diff --git a/drupalorg_project.views_default.inc b/drupalorg_project.views_default.inc
new file mode 100644
index 0000000..2b37cd5
--- /dev/null
+++ b/drupalorg_project.views_default.inc
@@ -0,0 +1,757 @@
+<?php
+/**
+ * @file
+ * Contains hook_view_default_views_alter() customizations for adding 'Age'
+ * column to the projectapplications Issue queue.
+ */
+
+/**
+ * Implement hook_views_default_views_alter().
+ *
+ * Adds a new display to the 'project_issue_project' view, at the menu path
+ * project/issues/projectapplications.  Since this path takes precedence over
+ * the original view path (project/issues/%pid), we modify the argument
+ * parameter in this display to provide "projectapplications" as a default
+ * argument instead of returning 404 if no argument supplied; and add our
+ * desired 'Age' field to the display.
+ */
+function _drupalorg_project_views_default_views_alter(&$views) {
+
+  // Modifications for the 'project_issue_project' view
+  if (isset($views['project_issue_project'])) {
+    $view = $views['project_issue_project'];
+
+    // START VIEWS EXPORT OF NEW DISPLAY
+    $handler = $view->new_display('page', 'Project Applications', 'page_2');
+    $handler->override_option('fields', array(
+      'title' => array(
+        'label' => 'Summary',
+        'link_to_node' => 1,
+        'exclude' => 0,
+        'id' => 'title',
+        'table' => 'node',
+        'field' => 'title',
+        'relationship' => 'none',
+      ),
+      'timestamp' => array(
+        'label' => '',
+        'alter' => array(),
+        'link_to_node' => 0,
+        'comments' => 0,
+        'exclude' => 0,
+        'id' => 'timestamp',
+        'table' => 'history_user',
+        'field' => 'timestamp',
+        'relationship' => 'none',
+      ),
+      'sid' => array(
+        'id' => 'sid',
+        'table' => 'project_issues',
+        'field' => 'sid',
+      ),
+      'priority' => array(
+        'id' => 'priority',
+        'table' => 'project_issues',
+        'field' => 'priority',
+      ),
+      'category' => array(
+        'label' => 'Category',
+        'link_to_node' => 0,
+        'exclude' => 0,
+        'id' => 'category',
+        'table' => 'project_issues',
+        'field' => 'category',
+        'relationship' => 'none',
+      ),
+      'version' => array(
+        'label' => 'Version',
+        'link_to_node' => 0,
+        'exclude' => 0,
+        'id' => 'version',
+        'table' => 'project_release_nodes',
+        'field' => 'version',
+        'relationship' => 'rid',
+      ),
+      'component' => array(
+        'label' => 'Component',
+        'link_to_node' => 0,
+        'exclude' => 0,
+        'id' => 'component',
+        'table' => 'project_issues',
+        'field' => 'component',
+        'relationship' => 'none',
+      ),
+      'comment_count' => array(
+        'label' => 'Replies',
+        'set_precision' => FALSE,
+        'precision' => 0,
+        'decimal' => '.',
+        'separator' => ',',
+        'prefix' => '',
+        'suffix' => '',
+        'exclude' => 0,
+        'id' => 'comment_count',
+        'table' => 'node_comment_statistics',
+        'field' => 'comment_count',
+        'relationship' => 'none',
+      ),
+      'new_comments' => array(
+        'label' => 'New replies',
+        'set_precision' => FALSE,
+        'precision' => 0,
+        'decimal' => '.',
+        'separator' => ',',
+        'prefix' => '',
+        'suffix' => ' new',
+        'link_to_comment' => 1,
+        'no_empty' => 1,
+        'exclude' => 0,
+        'id' => 'new_comments',
+        'table' => 'node',
+        'field' => 'new_comments',
+        'relationship' => 'none',
+      ),
+      'created' => array(
+        'label' => 'Age',
+        'alter' => array(
+          'alter_text' => 0,
+          'text' => '',
+          'make_link' => 0,
+          'path' => '',
+          'link_class' => '',
+          'alt' => '',
+          'prefix' => '',
+          'suffix' => '',
+          'target' => '',
+          'help' => '',
+          'trim' => 0,
+          'max_length' => '',
+          'word_boundary' => 1,
+          'ellipsis' => 1,
+          'html' => 0,
+          'strip_tags' => 0,
+        ),
+        'empty' => '',
+        'hide_empty' => 0,
+        'empty_zero' => 0,
+        'date_format' => 'raw time ago',
+        'custom_date_format' => '',
+        'exclude' => 0,
+        'id' => 'created',
+        'table' => 'node',
+        'field' => 'created',
+        'override' => array(
+          'button' => 'Use default',
+        ),
+        'relationship' => 'none',
+      ),
+      'last_comment_timestamp' => array(
+        'label' => 'Last updated',
+        'date_format' => 'raw time ago',
+        'custom_date_format' => '',
+        'exclude' => 0,
+        'id' => 'last_comment_timestamp',
+        'table' => 'node_comment_statistics',
+        'field' => 'last_comment_timestamp',
+        'relationship' => 'none',
+      ),
+      'name' => array(
+        'label' => 'Assigned to',
+        'link_to_user' => 1,
+        'overwrite_anonymous' => 1,
+        'anonymous_text' => '',
+        'exclude' => 0,
+        'id' => 'name',
+        'table' => 'users',
+        'field' => 'name',
+        'relationship' => 'assigned',
+      ),
+      'score' => array(
+        'label' => 'Score',
+        'alter' => array(),
+        'set_precision' => 1,
+        'precision' => '3',
+        'decimal' => '.',
+        'separator' => ',',
+        'prefix' => '',
+        'suffix' => '',
+        'alternate_sort' => 'last_comment_timestamp',
+        'alternate_order' => 'desc',
+        'exclude' => 0,
+        'id' => 'score',
+        'table' => 'search_index',
+        'field' => 'score',
+        'relationship' => 'none',
+      ),
+    ));
+    $handler->override_option('arguments', array(
+      'pid' => array(
+        'default_action' => 'default',
+        'style_plugin' => 'default_summary',
+        'style_options' => array(),
+        'wildcard' => '',
+        'wildcard_substitution' => '',
+        'title' => 'Issues for %1',
+        'breadcrumb' => '',
+        'default_argument_type' => 'fixed',
+        'default_argument' => '',
+        'validate_type' => 'project_nid',
+        'validate_fail' => 'not found',
+        'break_phrase' => 0,
+        'not' => 0,
+        'id' => 'pid',
+        'table' => 'project_issues',
+        'field' => 'pid',
+        'relationship' => 'none',
+        'default_options_div_prefix' => '',
+        'default_argument_user' => 0,
+        'default_argument_fixed' => 'projectapplications',
+        'default_argument_php' => '',
+        'validate_user_argument_type' => 'uid',
+        'validate_user_roles' => array(
+          '2' => 0,
+          '18' => 0,
+          '3' => 0,
+          '5' => 0,
+          '16' => 0,
+          '22' => 0,
+          '20' => 0,
+          '24' => 0,
+          '12' => 0,
+          '4' => 0,
+          '14' => 0,
+          '7' => 0,
+        ),
+        'override' => array(
+          'button' => 'Use default',
+        ),
+        'default_argument_image_size' => '_original',
+        'validate_argument_node_type' => array(
+          'organization' => 0,
+          'image' => 0,
+          'forum' => 0,
+          'project_project' => 0,
+          'project_release' => 0,
+          'project_issue' => 0,
+          'book' => 0,
+          'packaging_whitelist' => 0,
+          'page' => 0,
+          'showcase' => 0,
+          'story' => 0,
+        ),
+        'validate_argument_node_access' => 0,
+        'validate_argument_nid_type' => 'nid',
+        'validate_argument_vocabulary' => array(
+          '1' => 0,
+          '5' => 0,
+          '38' => 0,
+          '6' => 0,
+          '4' => 0,
+          '44' => 0,
+          '46' => 0,
+          '3' => 0,
+          '48' => 0,
+          '50' => 0,
+          '52' => 0,
+          '7' => 0,
+          '2' => 0,
+          '31' => 0,
+          '32' => 0,
+          '33' => 0,
+          '34' => 0,
+          '9' => 0,
+        ),
+        'validate_argument_type' => 'tid',
+        'validate_argument_transform' => 0,
+        'validate_user_restrict_roles' => 0,
+        'image_size' => array(
+          '_original' => '_original',
+          'thumbnail' => 'thumbnail',
+          'preview' => 'preview',
+        ),
+        'validate_argument_project_term_argument_type' => 'tid',
+        'validate_argument_project_term_argument_action_top_without' => 'pass',
+        'validate_argument_project_term_argument_action_top_with' => 'pass',
+        'validate_argument_project_term_argument_action_child' => 'pass',
+        'validate_argument_php' => '',
+      ),
+    ));
+    $handler->override_option('style_options', array(
+      'grouping' => '',
+      'override' => 1,
+      'sticky' => 1,
+      'order' => 'desc',
+      'columns' => array(
+        'title' => 'title',
+        'timestamp' => 'title',
+        'sid' => 'sid',
+        'priority' => 'priority',
+        'category' => 'category',
+        'version' => 'version',
+        'component' => 'component',
+        'comment_count' => 'comment_count',
+        'new_comments' => 'comment_count',
+        'last_comment_timestamp' => 'last_comment_timestamp',
+        'name' => 'name',
+        'score' => 'score',
+        'created' => 'created',
+      ),
+      'info' => array(
+        'title' => array(
+          'sortable' => 1,
+          'separator' => ' ',
+        ),
+        'timestamp' => array(
+          'separator' => '',
+        ),
+        'sid' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'priority' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'category' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'version' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'component' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'comment_count' => array(
+          'sortable' => 1,
+          'separator' => '<br />',
+        ),
+        'new_comments' => array(
+          'separator' => '',
+        ),
+        'last_comment_timestamp' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'name' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'score' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'created' => array(
+          'sortable' => 1,
+          'separator' => NULL,
+        ),
+      ),
+      'default' => 'score',
+    ));
+    $handler->override_option('row_plugin', NULL);
+    $handler->override_option('row_options', NULL);
+    $handler->override_option('path', 'project/issues/projectapplications');
+    $handler->override_option('menu', array(
+      'type' => 'none',
+      'title' => '',
+      'description' => '',
+      'weight' => 0,
+      'name' => 'navigation',
+    ));
+    $handler->override_option('tab_options', array(
+      'type' => 'none',
+      'title' => '',
+      'description' => '',
+      'weight' => 0,
+      'name' => 'navigation',
+    ));
+    // END VIEWS EXPORT
+
+
+    // For some reason, the export results in a 'missing display plugin',
+    // so we rebuild it here (by cloning from the default display, and
+    // tweaking as needed.
+    $view->display['page_2']->display_options['style_plugin'] = $view->display['default']->display_options['style_plugin'];
+    $view->display['page_2']->display_options['style_options'] = $view->display['default']->display_options['style_options'];
+    $view->display['page_2']->display_options['style_options']['columns']['created'] = 'created';
+    $view->display['page_2']->display_options['style_options']['info']['created'] = array(
+      'sortable' => 1,
+      'separator' => NULL,
+    );
+
+    // Modifications complete. Add view back to the $views array
+    $views['project_issue_project'] = $view;
+  }
+
+  // Modifications for the 'project_issue_search_project' view
+  if (isset($views['project_issue_search_project'])) {
+    $view = $views['project_issue_search_project'];
+
+    // START VIEWS EXPORT OF NEW DISPLAY
+    $handler = $view->new_display('page', 'Project Applications', 'page_2');
+    $handler->override_option('fields', array(
+      'title' => array(
+        'label' => 'Summary',
+        'link_to_node' => 1,
+        'exclude' => 0,
+        'id' => 'title',
+        'table' => 'node',
+        'field' => 'title',
+        'relationship' => 'none',
+      ),
+      'timestamp' => array(
+        'label' => '',
+        'alter' => array(),
+        'link_to_node' => 0,
+        'comments' => 0,
+        'exclude' => 0,
+        'id' => 'timestamp',
+        'table' => 'history_user',
+        'field' => 'timestamp',
+        'relationship' => 'none',
+      ),
+      'sid' => array(
+        'id' => 'sid',
+        'table' => 'project_issues',
+        'field' => 'sid',
+      ),
+      'priority' => array(
+        'id' => 'priority',
+        'table' => 'project_issues',
+        'field' => 'priority',
+      ),
+      'category' => array(
+        'label' => 'Category',
+        'link_to_node' => 0,
+        'exclude' => 0,
+        'id' => 'category',
+        'table' => 'project_issues',
+        'field' => 'category',
+        'relationship' => 'none',
+      ),
+      'version' => array(
+        'label' => 'Version',
+        'link_to_node' => 0,
+        'exclude' => 0,
+        'id' => 'version',
+        'table' => 'project_release_nodes',
+        'field' => 'version',
+        'relationship' => 'rid',
+      ),
+      'component' => array(
+        'label' => 'Component',
+        'link_to_node' => 0,
+        'exclude' => 0,
+        'id' => 'component',
+        'table' => 'project_issues',
+        'field' => 'component',
+        'relationship' => 'none',
+      ),
+      'comment_count' => array(
+        'label' => 'Replies',
+        'set_precision' => FALSE,
+        'precision' => 0,
+        'decimal' => '.',
+        'separator' => ',',
+        'prefix' => '',
+        'suffix' => '',
+        'exclude' => 0,
+        'id' => 'comment_count',
+        'table' => 'node_comment_statistics',
+        'field' => 'comment_count',
+        'relationship' => 'none',
+      ),
+      'new_comments' => array(
+        'label' => 'New replies',
+        'set_precision' => FALSE,
+        'precision' => 0,
+        'decimal' => '.',
+        'separator' => ',',
+        'prefix' => '',
+        'suffix' => ' new',
+        'link_to_comment' => 1,
+        'no_empty' => 1,
+        'exclude' => 0,
+        'id' => 'new_comments',
+        'table' => 'node',
+        'field' => 'new_comments',
+        'relationship' => 'none',
+      ),
+      'created' => array(
+        'label' => 'Age',
+        'alter' => array(
+          'alter_text' => 0,
+          'text' => '',
+          'make_link' => 0,
+          'path' => '',
+          'link_class' => '',
+          'alt' => '',
+          'prefix' => '',
+          'suffix' => '',
+          'target' => '',
+          'help' => '',
+          'trim' => 0,
+          'max_length' => '',
+          'word_boundary' => 1,
+          'ellipsis' => 1,
+          'html' => 0,
+          'strip_tags' => 0,
+        ),
+        'empty' => '',
+        'hide_empty' => 0,
+        'empty_zero' => 0,
+        'date_format' => 'raw time ago',
+        'custom_date_format' => '',
+        'exclude' => 0,
+        'id' => 'created',
+        'table' => 'node',
+        'field' => 'created',
+        'override' => array(
+          'button' => 'Use default',
+        ),
+        'relationship' => 'none',
+      ),
+      'last_comment_timestamp' => array(
+        'label' => 'Last updated',
+        'date_format' => 'raw time ago',
+        'custom_date_format' => '',
+        'exclude' => 0,
+        'id' => 'last_comment_timestamp',
+        'table' => 'node_comment_statistics',
+        'field' => 'last_comment_timestamp',
+        'relationship' => 'none',
+      ),
+      'name' => array(
+        'label' => 'Assigned to',
+        'link_to_user' => 1,
+        'overwrite_anonymous' => 1,
+        'anonymous_text' => '',
+        'exclude' => 0,
+        'id' => 'name',
+        'table' => 'users',
+        'field' => 'name',
+        'relationship' => 'assigned',
+      ),
+      'score' => array(
+        'label' => 'Score',
+        'alter' => array(),
+        'set_precision' => 1,
+        'precision' => '3',
+        'decimal' => '.',
+        'separator' => ',',
+        'prefix' => '',
+        'suffix' => '',
+        'alternate_sort' => 'last_comment_timestamp',
+        'alternate_order' => 'desc',
+        'exclude' => 0,
+        'id' => 'score',
+        'table' => 'search_index',
+        'field' => 'score',
+        'relationship' => 'none',
+      ),
+    ));
+    $handler->override_option('arguments', array(
+      'pid' => array(
+        'default_action' => 'default',
+        'style_plugin' => 'default_summary',
+        'style_options' => array(),
+        'wildcard' => '',
+        'wildcard_substitution' => '',
+        'title' => 'Search issues for %1',
+        'breadcrumb' => '',
+        'default_argument_type' => 'fixed',
+        'default_argument' => '',
+        'validate_type' => 'project_nid',
+        'validate_fail' => 'not found',
+        'break_phrase' => 0,
+        'not' => 0,
+        'id' => 'pid',
+        'table' => 'project_issues',
+        'field' => 'pid',
+        'relationship' => 'none',
+        'default_options_div_prefix' => '',
+        'default_argument_user' => 0,
+        'default_argument_fixed' => 'projectapplications',
+        'default_argument_php' => '',
+        'validate_argument_node_type' => array(
+          'organization' => 0,
+          'image' => 0,
+          'forum' => 0,
+          'project_project' => 0,
+          'project_release' => 0,
+          'project_issue' => 0,
+          'book' => 0,
+          'packaging_whitelist' => 0,
+          'page' => 0,
+          'showcase' => 0,
+          'story' => 0,
+        ),
+        'validate_argument_node_access' => 0,
+        'validate_argument_nid_type' => 'nid',
+        'validate_argument_vocabulary' => array(
+          '1' => 0,
+          '5' => 0,
+          '38' => 0,
+          '6' => 0,
+          '4' => 0,
+          '44' => 0,
+          '46' => 0,
+          '3' => 0,
+          '48' => 0,
+          '50' => 0,
+          '52' => 0,
+          '7' => 0,
+          '2' => 0,
+          '31' => 0,
+          '32' => 0,
+          '33' => 0,
+          '34' => 0,
+          '9' => 0,
+        ),
+        'validate_argument_type' => 'tid',
+        'validate_argument_project_term_vocabulary' => array(
+          '1' => 0,
+        ),
+        'validate_argument_project_term_argument_type' => 'tid',
+        'validate_argument_project_term_argument_action_top_without' => 'pass',
+        'validate_argument_project_term_argument_action_top_with' => 'pass',
+        'validate_argument_project_term_argument_action_child' => 'pass',
+        'validate_argument_php' => '',
+        'validate_user_argument_type' => 'uid',
+        'validate_user_roles' => array(
+          '2' => 0,
+          '18' => 0,
+          '3' => 0,
+          '5' => 0,
+          '16' => 0,
+          '22' => 0,
+          '20' => 0,
+          '24' => 0,
+          '12' => 0,
+          '4' => 0,
+          '14' => 0,
+          '7' => 0,
+        ),
+        'override' => array(
+          'button' => 'Use default',
+        ),
+        'default_argument_image_size' => '_original',
+        'validate_argument_transform' => 0,
+        'validate_user_restrict_roles' => 0,
+        'image_size' => array(
+          '_original' => '_original',
+          'thumbnail' => 'thumbnail',
+          'preview' => 'preview',
+        ),
+      ),
+    ));
+    $handler->override_option('style_options', array(
+      'grouping' => '',
+      'override' => 1,
+      'sticky' => 1,
+      'order' => 'desc',
+      'columns' => array(
+        'title' => 'title',
+        'timestamp' => 'title',
+        'sid' => 'sid',
+        'priority' => 'priority',
+        'category' => 'category',
+        'version' => 'version',
+        'component' => 'component',
+        'comment_count' => 'comment_count',
+        'new_comments' => 'comment_count',
+        'last_comment_timestamp' => 'last_comment_timestamp',
+        'name' => 'name',
+        'score' => 'score',
+        'created' => 'created',
+      ),
+      'info' => array(
+        'title' => array(
+          'sortable' => 1,
+          'separator' => ' ',
+        ),
+        'timestamp' => array(
+          'separator' => '',
+        ),
+        'sid' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'priority' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'category' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'version' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'component' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'comment_count' => array(
+          'sortable' => 1,
+          'separator' => '<br />',
+        ),
+        'new_comments' => array(
+          'separator' => '',
+        ),
+        'last_comment_timestamp' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'name' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'score' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+        'created' => array(
+          'sortable' => 1,
+          'separator' => '',
+        ),
+      ),
+      'default' => 'score',
+    ));
+    $handler->override_option('path', 'project/issues/search/projectapplications');
+    $handler->override_option('menu', array(
+      'type' => 'none',
+      'title' => '',
+      'description' => '',
+      'weight' => 0,
+      'name' => 'navigation',
+    ));
+    $handler->override_option('tab_options', array(
+      'type' => 'none',
+      'title' => '',
+      'description' => '',
+      'weight' => 0,
+      'name' => 'navigation',
+    ));
+    // END VIEWS EXPORT
+
+    // For some reason, the export results in a 'missing display plugin',
+    // so we rebuild it here (by cloning from the default display, and
+    // tweaking as needed.
+    $view->display['page_2']->display_options['style_plugin'] = $view->display['default']->display_options['style_plugin'];
+    $view->display['page_2']->display_options['style_options'] = $view->display['default']->display_options['style_options'];
+    $view->display['page_2']->display_options['style_options']['columns']['created'] = 'created';
+    $view->display['page_2']->display_options['style_options']['info']['created'] = array(
+      'sortable' => 1,
+      'separator' => NULL,
+    );
+
+    // Modifications complete. Add view back to the $views array
+    $views['project_issue_search_project'] = $view;
+  }
+}
+
+
