html_title_append) { $this->html_title = vjinfo('title')." » ".$this->html_title_append; // $query = "SELECT TOPIC from vj_post where VOLUME =".$id; // $topic = $vjdb->get_var($query); // $this->html_title = vjinfo('title').$topic; } else { $this->html_title = vjinfo('title'); } return $this->html_title; } function get_volalias($str="") { $this->html_volalias = $str; return true; } function get_voldate($str="") { $this->html_voldate = $str; return true; } function vj_header($title = ""){ global $is_email; if($title) { append_title($title); } header("Content-type: text/html; charset=utf-8"); if(file_exists("theme/header.php")) { include("theme/header.php"); }; } function vj_footer(){ if(file_exists("theme/footer.php")) { include("theme/footer.php"); } die(); } } function set_volalias($str) { global $html; return $html->get_volalias($str); } function set_voldate($str) { global $html; return $html->get_voldate($str); } function vj_header($title = ""){ global $html; return $html->vj_header($title); } function vj_footer(){ global $html; return $html->vj_footer($title); die(); } function vj_die($str="", $title=""){ append_title($title); vj_header(); echo $str; vj_footer(); } function append_title($title=""){ global $html; $html->html_title_append = $title; } function vj_title(){ global $html; $html->handle_title(); echo $html->html_title; } function vj_volalias(){ global $html; echo $html->html_volalias; } function vj_voldate(){ global $html; echo $html->html_voldate; } function vj_adminbar() { echo '
'; } ?>