@skaarg
Thanks for the php update.
However, you have missed a final }; from the end of your code to close the original if statement for this plugin.
So for everyone else, when editing this plugin code to make it work with vB4, replace the following:
PHP Code:
eval('$template_hook["usercp_main_pos' . $vbulletin->options['notepad_location'] . '"] .= "' . fetch_template('personal_notepad') . '";');
With:
PHP Code:
$templater = vB_Template::create('personal_notepad');
$template_hook['usercp_main_pos' . $vbulletin->options['notepad_location']] .= $templater->render();
};
Works perfectly in vB4.03 with this edit.
I've attached the xml installer I created by exporting the updated version from my current vB4.03 board. I hope that is useful. If someone can test this xml file for me on their site and verify it works, I could then post a new vB4 mod page for this update, and reference this original mod page to give credit.