@BadgerDog
as i think this feature comes in the next major version
btw if you really need it you need to edit some files:
in vBTube.php find :
PHP Code:
if ((!$_GET['do'] || $_GET['do'] == ''))
{
$_GET['do'] = 'today';
}
change by:
PHP Code:
if ((!$_GET['do'] || $_GET['do'] == ''))
{
$_GET['do'] = 'mysearch';
}
Find:
PHP Code:
if ($_GET['do'] == 'search') {
include("vBTube/includes/search.php");
}
add below:
PHP Code:
if ($_GET['do'] == 'mysearch') {
$search='my_search_terms'; //here you can add you search criteria
include("vBTube/includes/mysearch.php");
}
Now in
vBTube/includes take search.php make a copy and rename into mysearch.php
And now create a new link in template vBTube called "My Videos" o whatever you want... and link into:
Code:
<a href="vBTube.php?do=mysearch">My Videos</a>
i think this may work
remember change mysearch by whatever you want and "My Videos" too...
tell me if it works..