Quote:
Originally Posted by Lizard King The error only occurs on Standart Editor , if you use Wysiwyg it works correctly. You need to investigate Standart Editor interferance Chuck. It should be a very quick fix. |
Yep.. you are right.. this comes from an inconsistency in fetching the variables..
vbgallery does not use $vbulletin->GPC['message'] but cleans the post vars earlier with $message = $vbulletin->input->clean_gpc('p', 'message', TYPE_STR); . Thats ok.. but if somewhere in 3.8 init or global.php the postvar is cleaned allready or set to 0 if you are not in forums.. it cant be fetched twice..
anyway to fix that issue try following:
open gallery/newreply.php:
find:
Code:
Content visible to verified customers only.
and replace with:
Code:
Content visible to verified customers only.
I think this should fix the problem.
Luc
--------------------------------
I found another problem (but it can be selfmade -- so test if you have it also) (its only cosmetic)
if quickreply is empty.. and you click on "go advanced" you get to main editor.. but you also have an error message.
Quote:
1. Please complete both the subject and message fields.
2. The message you have entered is too short. Please lengthen your message to at least 0 characters.
|
this is normal.. because quick reply was empty.. but it should only be there if you actually posted and NOT if you come from quickreply..
If you can reproduce it do following:
open gallery/newreply.php and find:
Code:
Content visible to verified customers only.
and ABOVE add:
Code:
Content visible to verified customers only.
but again.. i checked some other installs.. some have the problem.. some dont.. so check if you have it before fixing..
Luc