*
* @author      Tom Murtagh
* @author      Kim Jackson
* @author      Ian Johnson   <*****@*****.**>
* @author      Artem Osmakov   <*****@*****.**>
* @copyright   (C) 2005-2016 University of Sydney
* @link        http://HeuristNetwork.org
* @version     3.1.0
* @license     http://www.gnu.org/licenses/gpl-3.0.txt GNU License 3.0
* @package     Heurist academic knowledge management system
* @subpackage  !!!subpackagename for file such as Administration, Search, Edit, Application, Library
*/
require_once dirname(__FILE__) . '/../../../common/connect/applyCredentials.php';
require_once dirname(__FILE__) . '/../../../common/t1000/t1000.php';
if (isForAdminOnly("to modify properties")) {
    return;
}
mysql_connection_overwrite(DATABASE);
$template = file_get_contents('editSysIdentification.html');
// $template = str_replace('{PageHeader}', '[literal]'.file_get_contents('menu.html').'[end-literal]', $template);
$lexer = new Lexer($template);
$body = new BodyScope($lexer);
$body->global_vars['dbname'] = HEURIST_DBNAME;
$body->verify();
if (@$_REQUEST['_submit']) {
    $body->input_check();
    if ($body->satisfied) {
        $body->execute();
    }
}
$body->render();