VbStatus 4 Critical Fix !!!

Going through this thread I never found a definite solution to fixing the "Edit" link not doing anything when clicked. Some have pointed out that this may be due to TCatt Image Resizer, of that I'm not sure, but I do have a solution that doesn't involve uninstalling and reinstalling everything.

If you open up ajax_wrapper.js and change this code:


Code:
_ajax.prototype.encode_datastream = function(_datastream)
{
	_datastream = _datastream.split('&')

	for (key in _datastream)
	{
		if (_datastream[key].match(/\=/))
		{
			bits = _datastream[key].split('=')

			_datastream[key] = bits[0] + '=' + encodeURIComponent(bits[1])
		}
	}

	return _datastream.join('&')
}
To This:

Code:
_ajax.prototype.encode_datastream = function(_datastream)
{
	_datastream = _datastream.split('&')

	for (key in _datastream)
	{
		if (_datastream[key].toString().match(/\=/))
		{
			bits = _datastream[key].toString().split('=')

			_datastream[key] = bits[0] + '=' + encodeURIComponent(bits[1])
		}
	}

	return _datastream.join('&')
}
That got rid of the Javascript errors for me, and I have TCatt installed and it is all working just fine. I hope this helps a lot of you out. Enjoy!
 
Really i dont believe this. you were soooooooooooooooooo fast. thank you. i owe you.

9 minutes have past from my post to your reply.

Thank you Hoxxy
 
By the way i just made the new changes in this file , cleared firefox cache and temporary files and retried and everything is more than fine. vbstatus started to work again fine.

So for anyone having the same problem do this changes and

Dont Forget to thank Hoxxy that made this possible !!!
 
Back
Top