Found the line producing the error. WP-Paginate uses the deprecated user-level mechanism.
Change
Line 259:
add_options_page('WP-Paginate', 'WP-Paginate', 10, basename(__FILE__), array(&$this, 'admin_options_page'));
to
Line 259:
add_options_page('WP-Paginate', 'WP-Paginate', 'activate_plugin', basename(__FILE__), array(&$this, 'admin_options_page'));