<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2006-2008 Xinn.org |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| ClearSite/ALOE, A Long Overdue Enterprise network managment solution! |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Xinn.org. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://aloeusers.net |
| http://clearsite.sourceforge.net |
| http://aloenms.net |
| http://clear-site.net |
| http://clear-site.info |
| http://xinn.org/ClearSite.html |
+-------------------------------------------------------------------------+
*/
error_reporting(E_ALL);
$pageref = "aloe";
include_once('include/config.php');
if (!isset($not_installed)) {
include_once("$cs_base_path/include/header.php");
include_once("$cs_base_path/include/sidebar.php");
print "
<div class=\"content\">
<!-- CELL -->
<div class=\"rnd-cell\">
<b class=\"rctop\">
<b class=\"rc1\"></b>
<b class=\"rc2\"></b>
<b class=\"rc3\"></b>
<b class=\"rc4\"></b>
</b>
<div class=\"content-cell\">
<div id=\"searchResults\">
</div>
<div id=\"targetArea\">
";
if (empty($new_user)) {
include_once("$cs_base_path/include/aloe/aloe_default.php");
} else {
include_once("$cs_base_path/include/user/profile.php");
};
print "
<!-- Ugly IE fix, use br's to pad the frame/div...-->
<br />
</div>
</div>
</div>
</div>
";
include_once("$cs_base_path/include/footer.php");
} else {
include_once("$cs_base_path/install.php");
};
?>