-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.php
33 lines (29 loc) · 1.33 KB
/
blogs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/******************************************************************************
Etano
===============================================================================
File: blogs.php
$Revision$
Software by: DateMill (http://www.datemill.com)
Copyright by: DateMill (http://www.datemill.com)
Support at: http://www.datemill.com/forum
*******************************************************************************
* See the "docs/licenses/etano.txt" file for license. *
******************************************************************************/
require 'includes/common.inc.php';
require _BASEPATH_.'/includes/user_functions.inc.php';
require _BASEPATH_.'/skins_site/'.get_my_skin().'/lang/blogs.inc.php';
check_login_member('all');
$tpl=new phemplate(_BASEPATH_.'/skins_site/'.get_my_skin().'/','remove_nonjs');
$output['lang_271']=sanitize_and_format($GLOBALS['_lang'][271],TYPE_STRING,$__field2format[TEXT_DB2DISPLAY]);
$tpl->set_file('content','blogs.html');
$tpl->set_var('output',$output);
$tpl->process('content','content');
$tplvars['title']=$GLOBALS['_lang'][202];
$tplvars['page_title']=$GLOBALS['_lang'][202];
$tplvars['page']='blogs';
$tplvars['css']='blogs.css';
if (is_file('blogs_left.php')) {
include 'blogs_left.php';
}
include 'frame.php';