diff options
author | Felix Favre <gnomus@gnomus.de> | 2014-12-07 16:38:31 +0100 |
---|---|---|
committer | Felix Favre <gnomus@gnomus.de> | 2014-12-07 16:38:31 +0100 |
commit | 9e0cc40e6d272aa0216fe785f7eb9175537b5e97 (patch) | |
tree | 33afead8169a672e3bab8461e4b72f5c7e1cc2c5 | |
parent | 1c18ce26ed59f64126f25cb7e5c0aaff25a56b30 (diff) |
added shift mailer
-rw-r--r-- | includes/mailer/shifts_mailer.php | 0 | ||||
-rw-r--r-- | public/index.php | 10 |
2 files changed, 6 insertions, 4 deletions
diff --git a/includes/mailer/shifts_mailer.php b/includes/mailer/shifts_mailer.php new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/includes/mailer/shifts_mailer.php diff --git a/public/index.php b/public/index.php index a64ec237..0ba203b0 100644 --- a/public/index.php +++ b/public/index.php @@ -36,6 +36,8 @@ require_once realpath(__DIR__ . '/../includes/helper/error_helper.php'); require_once realpath(__DIR__ . '/../includes/helper/email_helper.php'); require_once realpath(__DIR__ . '/../includes/helper/session_helper.php'); +require_once realpath(__DIR__ . '/../includes/mailer/shifts_mailer.php'); + require_once realpath(__DIR__ . '/../config/config.default.php'); if (file_exists(realpath(__DIR__ . '/../config/config.php'))) require_once realpath(__DIR__ . '/../config/config.php'); @@ -80,7 +82,7 @@ $free_pages = array( 'api', 'credits', 'angeltypes', - 'users' + 'users' ); // Gewünschte Seite/Funktion @@ -89,10 +91,10 @@ if (! isset($_REQUEST['p'])) $_REQUEST['p'] = isset($user) ? "news" : "login"; if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (in_array($_REQUEST['p'], $free_pages) || in_array($_REQUEST['p'], $privileges))) { $p = $_REQUEST['p']; - + $title = $p; $content = ""; - + if ($p == "api") { require_once realpath(__DIR__ . '/../includes/controller/api.php'); error("Api disabled temporily."); @@ -220,7 +222,7 @@ echo template_render('../templates/layout.html', array( 'content' => msg() . $content, 'header_toolbar' => header_toolbar(), 'faq_url' => $faq_url, - 'locale' => $_SESSION['locale'] + 'locale' => $_SESSION['locale'] )); counter(); |