Get the following error message on all pages.
Fatal error: Call to undefined function: views_handler_sort_date_options() in /home/colleg11/public_html/new/modules/views/modules/views_statistics.inc on line 52
Have had that module for months and never a problem with it. This afternoon, I went to add a new category term to a vocab. As soon as I added the category, the error message came up. I thought maybe there was an issue with the term.. so i deleted it from the database, but that didn't do anything.
Line 52 is
'option' => views_handler_sort_date_options(),
Any help would be appreciated as I cant access any drupal file pages now! The complete file is below:
<?php
// $Id: views_statistics.inc,v 1.7.2.2 2006/11/14 06:52:46 merlinofchaos Exp $
/**
* This include file implements views functionality on behalf of statistics.module
*/
function statistics_views_tables() {
$tables['node_counter'] = array(
'name' => 'node_counter',
'provider' => 'internal', // won't show up in external list.
'join' => array(
'left' => array(
'table' => 'node',
'field' => 'nid'
),
'right' => array(
'field' => 'nid'
),
),
'fields' => array(
'totalcount' => array(
'name' => t('Node: Total Hits'),
'sortable' => true,