-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotos.php
31 lines (27 loc) · 1.2 KB
/
photos.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
<?php
/******************************************************************************
Etano
===============================================================================
File: photos.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/photos.inc.php';
check_login_member('all');
$tpl=new phemplate(_BASEPATH_.'/skins_site/'.get_my_skin().'/','remove_nonjs');
$tpl->set_file('content','photos.html');
$tpl->process('content','content');
$tplvars['title']=$GLOBALS['_lang'][213];
$tplvars['page_title']=$GLOBALS['_lang'][213];
$tplvars['page']='photos';
$tplvars['css']='photos.css';
if (is_file('photos_left.php')) {
include 'photos_left.php';
}
include 'frame.php';