Hi all,
In Zenphoto 1.4.14 I had a custom index page.
I had a home.php that was actually the index.php, and a gallery.php as the gallery index page.
In my index.php I had the following code:
<pre>[code]
<?php
if (getOption('')) {
$isHomePage = true;
include ('home.php');
} else {
$isHomePage = false;
include ('gallery.php');
}
?>
[/code]</pre>
In the theme option the gallery.php was the gallery index page link.
In Zenphoto 1.5 this option doesn't work anymore. Is this option changed?
TIA