I was not talking about the template names, but about the id for your tab:
HTML Code:
<div id="view-photos"
Change that to mpphotos now.
HTML Code:
<div id="view-mpphotos"
Remove this:
PHP Code:
$templater = vB_Template::create('memberinfo_block_mpphotos');
$templater->register('albumbits2', $albumbits2);
Replace with:
PHP Code:
vB_Template::preRegister('memberinfo_block_photos', array('albumbits2' => $albumbits2));
vB_Template::preRegister('memberinfo_block_photos', array('albumcount' => $albumcount));
(You didn't put in code for the albumcount, so do that too and any other variable in that template.)