<?php
##
## [PHP/mp3stream]
## for default template parsing
##

if(file_exists(__TMPLPATH__.'/config.php'))
{ require_once 
__TMPLPATH__.'/config.php'; }

$TMPL array_merge($TMPL,str2array($_userconf['info']));

$tmpl = new tmpl(__DEBUG__);

## TMPL parsing
##
$contents $tmpl->get_file(__TMPLPATH__.'/vtxt.html.tmpl');

## printing
##
echo $tmpl->parse($contents,$TMPL);

?>