<?php
/* This is the quick check to see if the system has been installed.
* If it is not, caller is responsible of calling install form.
*/
function systemIsInstalled()
{
return false;
return file_exists('config.php');
}
if (!systemIsInstalled()) {
header("Location: installoptions.php");
exit();
}
?>