$ull is setup here ->
start line 694
if( class_exists( 'UserLoginLog' ) )
{
$ull = new UserLoginLog;
//Register for activation
register_activation_hook( __FILE__, array(&$ull, 'install') );
}
end line 700
$ull = new UserLoginLog(); is not defined in other place
near line 887 in the prepare_item() function i already have global $wpdb, $ull;
start line 877
function prepare_items()
{
global $wpdb, $ull;
//get number of successful and failed logins so we can display them in parentheces for each view
//building a WHERE SQL query for each view
....
$this->set_pagination_args( array(
'total_items' => $total_items, //WE have to calculate the total number of items
'per_page' => $per_page, //WE have to determine how many items to show on a page
'total_pages' => ceil($total_items/$per_page) //WE have to calculate the total number of pages
) );
}
}
//eof line 991
but it still dont work