Index: solr/project_solr.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/solr/project_solr.module,v
retrieving revision 1.50
diff -u -p -r1.50 project_solr.module
--- solr/project_solr.module	19 Feb 2009 10:06:48 -0000	1.50
+++ solr/project_solr.module	7 Mar 2009 18:27:37 -0000
@@ -140,7 +140,7 @@ function project_solr_browse_page($term_
 
     // Validate sort parameter
     if ((!isset($sort) || !preg_match('/^([a-z0-9_]+ (asc|desc)(,)?)+$/i', $sort)) && empty($text_query)) {
-      $sort = 'title_sort asc';
+      $sort = 'sort_title asc';
     }
 
     include_once drupal_get_path('module', 'project_solr') .'/ProjectSolrQuery.php';
@@ -331,7 +331,7 @@ function project_solr_block($op = 'list'
     }
     else if ($delta == 'project_solr_order') {
       $sorts = array(
-        'title_sort' => array('name' => t('Title'), 'default' => 'asc'),
+        'sort_title' => array('name' => t('Title'), 'default' => 'asc'),
         'created' => array('name' => t('Creation date'), 'default' => 'desc'),
       );
       if (module_exists('project_release')) {
@@ -352,7 +352,7 @@ function project_solr_block($op = 'list'
 
       if (empty($solrsorts) && empty($_GET['text'])) {
         $solrsorts = array(
-          'title_sort' => 'asc',
+          'sort_title' => 'asc',
         );
       }
 
