I fixed the warning on my 4.03 board by editing the plugin to use the new way to get template data.
In
Admin Control Panel, expand
Plugins & Products, go to
Plugin Manager, then find and click on the plugin called
"Save personal notepad and add template".
In the
Plugin PHP Code box, find the following line (at the bottom):
PHP Code:
eval('$template_hook["usercp_main_pos' . $vbulletin->options['notepad_location'] . '"] .= "' . fetch_template('personal_notepad') . '";');
Replace it with these two lines:
PHP Code:
$templater = vB_Template::create('personal_notepad');
$template_hook['usercp_main_pos' . $vbulletin->options['notepad_location']] .= $templater->render();
Save and enjoy!
Cheers, Alex