Quote:
Originally Posted by Oblivion Knight
Would it be possible to place the error in to vBulletin's $errors[] array in profile.php instead of printing the error in a separate standard_error page? I guess I'm a perfectionist, but I used to have it this way with 3.0.7 and I'm still struggling with the plugin system myself.. 
|
It's worth a try
Try replacing, in the plugin:
PHP Code:
eval(standard_error(fetch_error('signaturetoobig')));
with:
PHP Code:
$vbulletin->GPC['preview'] = 'true';
$errors[] = fetch_error('signaturetoobig', $maxsigwidth, $maxsigheight);
Then alter your phrase to something like:
Quote:
Your signature image size is too large. The maximum dimensions are $maxsigwidth by $maxsigheight.
|
Dunno if it will work - Should do but I haven't had enough time to check out the fetch_error array or how it functions
Satan