undo require_not_once workaround

This commit is contained in:
systopia 2015-03-27 13:19:56 +01:00
parent 90f55d7e56
commit fdcb417e1b
8 changed files with 8 additions and 8 deletions

View File

@ -7,7 +7,7 @@
| http://www.systopia.de/ | | http://www.systopia.de/ |
+---------------------------------------------------------*/ +---------------------------------------------------------*/
require "proxy.php"; require_once "proxy.php";
?> ?>
<!DOCTYPE html> <!DOCTYPE html>

View File

@ -8,7 +8,7 @@
+---------------------------------------------------------*/ +---------------------------------------------------------*/
ini_set('include_path', dirname(dirname(__FILE__))); ini_set('include_path', dirname(dirname(__FILE__)));
require "proxy.php"; require_once "proxy.php";
// see if mail open tracking is enabled // see if mail open tracking is enabled
if (!$mail_subscription_user_key) civiproxy_http_error("Feature disabled", 405); if (!$mail_subscription_user_key) civiproxy_http_error("Feature disabled", 405);

View File

@ -8,7 +8,7 @@
+---------------------------------------------------------*/ +---------------------------------------------------------*/
ini_set('include_path', dirname(dirname(__FILE__))); ini_set('include_path', dirname(dirname(__FILE__)));
require "proxy.php"; require_once "proxy.php";
// see if mail open tracking is enabled // see if mail open tracking is enabled
if (!$target_mail_view) civiproxy_http_error("Feature disabled", 405); if (!$target_mail_view) civiproxy_http_error("Feature disabled", 405);

View File

@ -8,7 +8,7 @@
+---------------------------------------------------------*/ +---------------------------------------------------------*/
ini_set('include_path', dirname(dirname(__FILE__))); ini_set('include_path', dirname(dirname(__FILE__)));
require "proxy.php"; require_once "proxy.php";
// see if mail open tracking is enabled // see if mail open tracking is enabled
if (!$mail_subscription_user_key) civiproxy_http_error("Feature disabled", 405); if (!$mail_subscription_user_key) civiproxy_http_error("Feature disabled", 405);

View File

@ -8,7 +8,7 @@
+---------------------------------------------------------*/ +---------------------------------------------------------*/
ini_set('include_path', dirname(dirname(__FILE__))); ini_set('include_path', dirname(dirname(__FILE__)));
require "proxy.php"; require_once "proxy.php";
// see if mail open tracking is enabled // see if mail open tracking is enabled
if (!$mail_subscription_user_key) civiproxy_http_error("Feature disabled", 405); if (!$mail_subscription_user_key) civiproxy_http_error("Feature disabled", 405);

View File

@ -8,7 +8,7 @@
+---------------------------------------------------------*/ +---------------------------------------------------------*/
ini_set('include_path', dirname(dirname(__FILE__))); ini_set('include_path', dirname(dirname(__FILE__)));
require "proxy.php"; require_once "proxy.php";
// see if mailing subscribe feature is enabled // see if mailing subscribe feature is enabled
if (empty($mail_subscription_user_key)) civiproxy_http_error("Feature disabled", 405); if (empty($mail_subscription_user_key)) civiproxy_http_error("Feature disabled", 405);

View File

@ -8,7 +8,7 @@
+---------------------------------------------------------*/ +---------------------------------------------------------*/
ini_set('include_path', dirname(dirname(__FILE__))); ini_set('include_path', dirname(dirname(__FILE__)));
require "proxy.php"; require_once "proxy.php";
// see if mailing subscribe feature is enabled // see if mailing subscribe feature is enabled
if (empty($mail_subscription_user_key)) civiproxy_http_error("Feature disabled", 405); if (empty($mail_subscription_user_key)) civiproxy_http_error("Feature disabled", 405);

View File

@ -7,7 +7,7 @@
| http://www.systopia.de/ | | http://www.systopia.de/ |
+---------------------------------------------------------*/ +---------------------------------------------------------*/
require "config.php"; require_once "config.php";
$civiproxy_version = '0.3'; $civiproxy_version = '0.3';
$civiproxy_logo = "<img src='{$proxy_base}/static/images/proxy-logo.png' alt='SYSTOPIA Organisationsberatung'></img>"; $civiproxy_logo = "<img src='{$proxy_base}/static/images/proxy-logo.png' alt='SYSTOPIA Organisationsberatung'></img>";