After today's CVS update of all code, the following error appeared "Fatal error: Call to undefined function: tablesort_pager() in /home/airexcha/codebase/drupal/modules/casetracker/casetracker.module on line 303".

the fix might be simple, so I'll see what I can do. Don't wait for me though...

Comments

Nick Lewis’s picture

Status: Active » Reviewed & tested by the community

So easy of a fix that I'm not going to actually build a patch....

On line 303 (before)

 $output .= theme('pager', NULL, 15, 0, tablesort_pager());

On line 303 (after)

 $output .= theme('pager', NULL, 15, 0);

Simply remove the reference to the depreciated function. Cheers!

greggles’s picture

That solution worked for me as well. Thanks, Nick.

Patrick Nelson’s picture

There is more than one place where this fix needs to be applied. Under v1.38 of the module, there are the following lines that need changing:

293, 339, and 1679

Still agree with Nick though that it's not worth a patch.

Nick Lewis’s picture

Does this module need a maintainer? For some weeks, every cvs update re-crashes this module. I'd be happy to take it on. There's a lot of improvements I've been wanting to add to it anyway. It would make a good excuse to get me a CVS account.

gerhard killesreiter’s picture

Heh, no the module is maintained and under develop,ment, only the sandbox we use runs an outdated RC so we don't notice how annoying it. It will be fixed tomorrow.

DaveNotik’s picture

Right, Gerhard and I oversee things, and a member of our India-based team does most of the development. That said, in the spirit of open source, I'd like to encourage all kinds of involvement. Please do contribute code in the form of patches, and anything else (suggestions, issues, documentation...) -- I see everything that comes through, and I'll devote our resources to it accordingly.

Thanks for your participation, Nick. :)

I'll update our sandbox to RC4 right now.

sanjeev gupta’s picture

Status: Reviewed & tested by the community » Fixed

The depreciated function tablesort_pager() has been removed.

Nick Lewis’s picture

LOL, I figured that would at least get someone's attention, thanks ya'll!

Anonymous’s picture

Status: Fixed » Closed (fixed)