In 3.0 I was doing in a somewhat backward way, changing the size right after it was returned:
functions_file.php:
Code:
$maxattachsize = $attachtypes["$extension"]['size'];
global $isMember;
if ($isMember)
$maxattachsize = 100 * 1024;
I figured actually resetting the extension variables was more versatile, and did it that way in the 3.5 hook, but clearly wasn't accessing the variable correctly. Thanks for the help.
Shannon