[#44] added warning for CiviCRM < 5.27
This commit is contained in:
parent
911f9ec3d3
commit
1f46d5e5da
|
|
@ -33,11 +33,16 @@ $target_civicrm = 'https://your.civicrm.installation.org';
|
||||||
|
|
||||||
// default paths, override if you want. Set to NULL to disable
|
// default paths, override if you want. Set to NULL to disable
|
||||||
$target_rest = $target_civicrm . '/sites/all/modules/civicrm/extern/rest.php';
|
$target_rest = $target_civicrm . '/sites/all/modules/civicrm/extern/rest.php';
|
||||||
$target_url = $target_civicrm . '/civicrm/mailing/url';
|
|
||||||
$target_open = $target_civicrm . '/civicrm/mailing/open';
|
|
||||||
$target_file = $target_civicrm . '/sites/default/files/civicrm/persist/';
|
$target_file = $target_civicrm . '/sites/default/files/civicrm/persist/';
|
||||||
$target_mosaico = NULL; // (disabled by default): $target_civicrm . '/civicrm/mosaico/img?src=';
|
$target_mosaico = NULL; // (disabled by default): $target_civicrm . '/civicrm/mosaico/img?src=';
|
||||||
$target_mail_view = $target_civicrm . '/civicrm/mailing/view';
|
$target_mail_view = $target_civicrm . '/civicrm/mailing/view';
|
||||||
|
$target_url = $target_civicrm . '/civicrm/mailing/url';
|
||||||
|
$target_open = $target_civicrm . '/civicrm/mailing/open';
|
||||||
|
|
||||||
|
// CAUTION: use the following for CiviCRM < 5.27
|
||||||
|
$target_url = $target_civicrm . '/sites/all/modules/civicrm/extern/url.php';
|
||||||
|
$target_open = $target_civicrm . '/sites/all/modules/civicrm/extern/open.php';
|
||||||
|
|
||||||
|
|
||||||
/****************************************************************
|
/****************************************************************
|
||||||
** GENERAL OPTIONS **
|
** GENERAL OPTIONS **
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue