Quote:
Originally Posted by appsfinder
this happened to me when submiting media fom nav bar but works when using Submit Media at bottom of page main page? strange!
so for now ive removed submit media from navbar as a work around. vb 4.1.4
|
Try this
Replace in media_ajax_submit.js:
PHP Code:
fetch_object('vB_Editor_001_textarea').value = description;
with:
PHP Code:
vB_Editor['vB_Editor_001'].write_editor_contents(description);
And:
PHP Code:
function validate()
{
var error = '';
with:
PHP Code:
function validate()
{
vB_Editor['vB_Editor_001'].prepare_submit(0, 0);
var error = '';
BR