Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Nuggets
Nuggets
0
Comments
Am I the only one getting this error, 6 times on the Nugget Settings page and once on every other page?
I feel cheated that I'm not able to use such a great add-on.
Posted: Tuesday, 3 April 2007 at 4:00PM
Posted: Tuesday, 3 April 2007 at 7:56PM
by default it is disabled
check ur nuggets.php file and post whats in there
Mmmm, Nuggets, do we all love the analogy?
Frozen, cooked, pan, weight, serving!
Very clever don't you all think?
Posted: Wednesday, 4 April 2007 at 4:24PM
Should be a read-me saying this MySchizoBuddy.
Posted: Thursday, 5 April 2007 at 7:29AM
<?php echo $this->Context->Session->User->Name; ?>
It works in a Page Manager page, it prints the current user's name but in a Nugget it errors with...
Notice: Undefined variable: Context in /forum/extensions/Nugget/default.php(732) : eval()'d code on line 1
Posted: Thursday, 5 April 2007 at 10:04AM
scroll down to this function AllowPHP()
add this to it
global $Context
then u can use this as a php code
<?php echo $Context->Session->User->Name; ?>
use $Context instead of $this->Context