manager/includes/manager.lockout.inc.php 1 location
|
@@ 26-28 (lines=3) @@
|
| 23 |
|
$modx->setPlaceholder('year',date('Y')); |
| 24 |
|
|
| 25 |
|
// load template |
| 26 |
|
if(!isset($modx->config['manager_lockout_tpl']) || empty($modx->config['manager_lockout_tpl'])) { |
| 27 |
|
$modx->config['manager_lockout_tpl'] = MODX_MANAGER_PATH . 'media/style/common/manager.lockout.tpl'; |
| 28 |
|
} |
| 29 |
|
|
| 30 |
|
$target = $modx->config['manager_lockout_tpl']; |
| 31 |
|
$target = str_replace('[+base_path+]', MODX_BASE_PATH, $target); |
manager/actions/welcome.static.php 1 location
|
@@ 410-412 (lines=3) @@
|
| 407 |
|
$ph['widgets'] = $output;
|
| 408 |
|
|
| 409 |
|
// load template
|
| 410 |
|
if(!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) {
|
| 411 |
|
$modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH . 'media/style/common/welcome.tpl';
|
| 412 |
|
}
|
| 413 |
|
|
| 414 |
|
$target = $modx->config['manager_welcome_tpl'];
|
| 415 |
|
$target = str_replace('[+base_path+]', MODX_BASE_PATH, $target);
|