Quote:
Originally Posted by Razasharp
Thought it would be nice to have a place where we can note all out little unexpected but welcome surprises in 3.5.0!!
I'll start!
Just noticed that I no longer need a hack to auto-resize peoples avatar and profile pics... because its now a standard feature!!
|
I learned that I have to add exit; to any code that outputs debug text for it to show up within a plugin, like:
PHP Code:
echo "<pre>";
print_r($vbulletin->userinfo);
echo "</pre>";
exit;
I thought that's what $_phpinclude_output was supposed to be used for. Dammit.