Quote:
Originally Posted by efc9
in vBTube.php find:
Code:
if ((!$_GET['do'] || $_GET['do'] == ''))
{
$_GET['do'] = 'featured';
}
and change to:
Code:
if ((!$_GET['do'] || $_GET['do'] == ''))
{
$search='<insert search term>';
$_GET['do'] = 'search';
}
replace <insert search term> with your search term and that'll show the search instead of the featured videos on the frontpage.
|
damn!! thanks.... i was wondering about this... much appreciated