Quote:
Originally Posted by kh99
The login_process hook is called inside a function (while the forumdisplay and forumhome are not). So any global variables you use (whether you're creating them or reading them) have to be declared global in your plugin code.
|
I figured as much, tried using the include / $global code, nothing thus far. Still toying with it. But that doesn't explain though why letter/word array works fine (with example)
Code:
// Configuration
$steamRepScamTitles = array( // Dictionary describing the user title that should be set depending on the tag
'CAUTION' => array(
'title' => '<span style="color:darkyellow;font-weight:bold">Caution User</span>',
'groupid' => 37
)
);
while numbers don't. Any idea?