|
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 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 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> |
|---|