root/trunk/index.php

Revision 573, 1.1 KB (checked in by sidtheduck, 3 months ago)

+ fix for ticket #89 - RSS feed for picture comments
+ fix for backward compatibility of themes slideshow.php and the slideshow functions
+ adding plogger_get_picture_filename() function from PieperLy? on the forums
+ general syntax cleaning and updating index.php to include plogger.php instead of gallery.php (deprecated)

Line 
1<?php
2/*
3 * Plogger - A web based photo gallery
4 * Copyright (C) 2005 Mike Johnson
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 */
20?>
21<?php require("plogger.php"); ?>
22<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
23    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
24<html xml:lang="<?php echo $language; ?>" lang="<?php echo $language; ?>" xmlns="http://www.w3.org/1999/xhtml">
25<head>
26<?php the_plogger_head(); ?>
27</head>
28
29<body>
30
31<?php the_plogger_gallery(); ?>
32
33</body>
34</html>
Note: See TracBrowser for help on using the browser.