Project:Taxonomy assoc
Version:master
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

Code uses tablesort_pager() form 4.6.0. Remove for 4.7.0. At about line 200 replace

<?php
 
if ($pager = theme('pager', NULL, 50, 0, tablesort_pager())) {
   
$rows[] = array(array('data' => $pager, 'colspan' => '4'));
  }
?>

with

<?php
   
if ($pager = theme('pager', NULL, 50, 0))
        {
       
$rows[] = array(array('data' => $pager, 'colspan' => '4'));
        }
?>
nobody click here