undo require_not_once workaround
This commit is contained in:
parent
90f55d7e56
commit
fdcb417e1b
|
|
@ -7,7 +7,7 @@
|
||||||
| http://www.systopia.de/ |
|
| http://www.systopia.de/ |
|
||||||
+---------------------------------------------------------*/
|
+---------------------------------------------------------*/
|
||||||
|
|
||||||
require "proxy.php";
|
require_once "proxy.php";
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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>";
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue