For those with the following error code upon loading a video:
Code:
Warning: trim() expects parameter 1 to be string, array given in [path]/vbtube_add.php on line 140
Perform the following:
Open => vbtube_add.php
Find:
PHP Code:
$vbt_var['keywords']=trim($vbt_var['keywords']);
Replace With:
PHP Code:
$vbt_var['keywords']=trim("$vbt_var[keywords]");
I had the same issue and this fixed the problem!