12 lines
295 B
PHP
12 lines
295 B
PHP
<?php
|
|
if(function_exists("checkForPage")) { // check if Zenpage is enabled or not
|
|
if (checkForPage(getOption("zpgal_homepage"))) { // switch to a news page
|
|
$ishomepage = true;
|
|
include ('pages.php');
|
|
} else {
|
|
include ('gallery.php');
|
|
}
|
|
} else {
|
|
include ('gallery.php');
|
|
}
|
|
?>
|