]> git.mxchange.org Git - mailer.git/blobdiff - api.php
also prevent it in .htacces. You may want to add this to one of your files in /etc...
[mailer.git] / api.php
diff --git a/api.php b/api.php
index a6524ae02c1a72f9e44d201ac263210c8cf1939c..1b60bfc89a894ae8fa251c2dc16ec4d4cb447b7c 100644 (file)
--- a/api.php
+++ b/api.php
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Allgemeines API-Script                           *
  * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -53,8 +48,11 @@ $GLOBALS['__module']      = 'api';
 $GLOBALS['__header_sent'] = 2;
 $GLOBALS['__footer_sent'] = 2;
 
-// Load config file
-require('inc/config-global.php');
+// Temporary set HTTP 404 here. This will be removed once this stuff is ready.
+setHttpStatus('404 Not Found');
+
+// Initialize application
+require('inc/init.php');
 
 // Load special API library
 //loadIncludeOnce('inc/api-functions.php');
@@ -63,12 +61,12 @@ require('inc/config-global.php');
 //initApi();
 
 // Load header here
-loadIncludeOnce('inc/header.php');
+loadPageHeader();
 
 // @TODO Do stuff here
 
 // Footer
-loadIncludeOnce('inc/footer.php');
+loadPageFooter();
 
 // [EOF]
 ?>