I made a patch to fix this.
de-activate, delete and re-install wppa+
OR ( if you can edit php files ) :
edit wp-photo-album-plus/wppa-tinymce.php line from line 19 it reads:
function action_admin_init() {
// only hook up these filters if we're in the admin panel, and the current user has permission
// to edit posts or pages
if ( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) {
if (!is_plugin_active('ultimate-tinymce/main.php')) {
add_filter( 'mce_buttons', array( $this, 'filter_mce_button' ) );
}
add_filter( 'mce_external_plugins', array( $this, 'filter_mce_plugin' ) );
}
}
change to:
function action_admin_init() {
// only hook up these filters if we're in the admin panel, and the current user has permission
// to edit posts or pages
if ( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) {
// if (!is_plugin_active('ultimate-tinymce/main.php')) {
add_filter( 'mce_buttons', array( $this, 'filter_mce_button' ) );
// }
add_filter( 'mce_external_plugins', array( $this, 'filter_mce_plugin' ) );
}
}
i.e. comment 2 lines away